1. First we have to put first part of code in head section to edit CSS of theme. I will here show you how to add in blogger theme. How to edit theme in blogger, click here
2. In that section you learn how to edit blogger template or theme, Now i will show you how to add code in template or theme
(a). Add CSS code :
If you want the image to scale both up and down on responsiveness, set the CSS width property to 100% and height to auto:
.responsive {
width: 100%;
height: auto;
}
(b). Add this code If you want an image to scale down if it has to, but never scale up to be larger than its original size, use max-width: 100%:
.responsive {
max-width: 100%;
height: auto;
}
(c). Add this code If you want to restrict a responsive image to a maximum size, use the max-width property, with a pixel value of your choice.
.responsive {
width: 100%;
max-width: 400px;
height: auto;
}
5. Now finaly add this code in html or edit your image class as responstive
<img src="nature.jpg" alt="Nature" class="responsive">
No comments:
Post a Comment
You are welcome to ask any questions and submit suggestions related to post