Changes
- Fix browser specific bug
- Update docs!
</div>
```
+<div class="alert callout">
+ <p><strong>Browser Bug (IE 11 - Flexbug): </strong>On IE 11, when using the card with equalizer, there is an extra added space under each image that happens to match the original image size. The bug can be reproduced <a href="https://codepen.io/IamManchanda/pen/MmRqvN?editors=1100">here</a> on an IE11 browser. Use <code>.card-image</code> class as a parent class to an <strong>image</strong> to resolve this.</p>
+</div>
+
+<div class="docs-codepen-container">
+ <a class="codepen-logo-link" href="https://codepen.io/IamManchanda/pen/aWrWQq?editors=1100" target="_blank"><img src="{{root}}assets/img/logos/edit-in-browser.svg" class="" height="" width="" alt="edit on codepen button"></a>
+</div>
+
+```html
+<div class="card-image">
+ <img src="assets/img/generic/rectangle-1.jpg">
+</div>
+```
+
---
### Card Divider
.card-section {
@include card-section;
}
+
+ // For IE 11 - Flexbug
+ // https://github.com/philipwalton/flexbugs/issues/75
+ .card-image {
+ min-height: 1px;
+ }
}