`img`s are no longer responsive by default. Instead, use
`.img-responsive` as a class or mixin. Existing `.thumbnail > img` and
`.img-thumbnail` classes now make use of this as a mixin as well.
}
img {
+ vertical-align: middle;
+}
+
+.img-responsive {
+ display: block;
height: auto;
max-width: 100%;
- vertical-align: middle;
}
.img-rounded {
transition: all 0.2s ease-in-out;
}
+.thumbnail > img,
+.img-thumbnail {
+ display: block;
+ height: auto;
+ max-width: 100%;
+}
+
.thumbnail {
display: block;
}
}
.thumbnail > img {
- display: block;
- max-width: 100%;
margin-right: auto;
margin-left: auto;
}
// -------------------------
img {
- // Responsive images (ensure images don't scale beyond their parents)
+ vertical-align: middle;
+}
+
+// Responsive images (ensure images don't scale beyond their parents)
+.img-responsive {
+ display: block;
max-width: 100%; // Part 1: Set a maximum relative to the parent
height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
-
- // Match vertical alignment with other comment elements
- vertical-align: middle;
}
// Rounded corners
border-radius: @thumbnail-border-radius;
.transition(all .2s ease-in-out);
}
+.thumbnail > img,
+.img-thumbnail {
+ .img-responsive();
+}
.thumbnail {
display: block;
}
// Images and captions
.thumbnail > img {
- display: block;
- max-width: 100%;
margin-left: auto;
margin-right: auto;
}