Workaround for responsive images on ie 8

This is part of the fix for issue #287
This commit is contained in:
Alexandre Teles 2016-08-24 13:15:23 -03:00 committed by GitHub
parent 2e71042286
commit bd2c452643
1 changed files with 10 additions and 1 deletions

View File

@ -69,4 +69,13 @@
#menu > * {
border-top: solid 1px #dedede;
}
}
/* Responsive images */
@media \0screen {
img {
width: auto; /* for ie 8 */
}
}