Reputation: 303
I am using Bootstrap 3.0 dist and I am following some Bootstrap tutorial now, trying to learn how it works. I did everything exactly as in the tutorial (it is for v2, so I changed the classes to v3) and I do not use any custom CSS or anything and in the tutorial the images resize when you simply resize the window, but in mine it stays same and wrecks everything. Also according to the tutorial images should stay centered inside the boxes (the 3 images).
Upvotes: 16
Views: 38462
Reputation: 425
Have you tried adding class="img-responsive" to the problematic images?
Upvotes: 15
Reputation: 636
In bootstrap 3 Images are no longer responsive by default. Use .img-responsive for fluid size.
Doc:http://getbootstrap.com/getting-started/#migration-dropped
Upvotes: 34