main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
395 bytes
|
Rev | Line | |
---|
[d565449] | 1 | // Image Mixins
|
---|
| 2 | // - Responsive image
|
---|
| 3 | // - Retina image
|
---|
| 4 |
|
---|
| 5 |
|
---|
| 6 | // Responsive image
|
---|
| 7 | //
|
---|
| 8 | // Keep images from scaling beyond the width of their parents.
|
---|
| 9 |
|
---|
| 10 | @mixin img-fluid {
|
---|
| 11 | // Part 1: Set a maximum relative to the parent
|
---|
| 12 | max-width: 100%;
|
---|
| 13 | // Part 2: Override the height to auto, otherwise images will be stretched
|
---|
| 14 | // when setting a width and height attribute on the img element.
|
---|
| 15 | height: auto;
|
---|
| 16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.