1
0
Fork 0
hswro_org/_sass/bootstrap/mixins/_image.scss

17 lines
395 B
SCSS
Raw Permalink Normal View History

2018-12-09 07:21:01 +00:00
// Image Mixins
// - Responsive image
// - Retina image
// Responsive image
//
// Keep images from scaling beyond the width of their parents.
2023-11-26 06:34:29 +00:00
@mixin img-fluid {
2018-12-09 07:21:01 +00:00
// Part 1: Set a maximum relative to the parent
max-width: 100%;
// Part 2: Override the height to auto, otherwise images will be stretched
// when setting a width and height attribute on the img element.
height: auto;
}