InterviewSolution
Saved Bookmarks
| 1. |
How Do You Make Images Responsive? |
|
Answer» BOOTSTRAP 3 allows to make the images responsive by adding a class .img-responsive to the <img> tag. This class APPLIES max-width: 100%; and height: auto; to the image so that it scales NICELY to the parent element. Bootstrap 3 allows to make the images responsive by adding a class .img-responsive to the <img> tag. This class applies max-width: 100%; and height: auto; to the image so that it scales nicely to the parent element. |
|