반응형웹에서 이미지 높이 auto 값이 ie 8 이하에서 오류 대처

img {
  width: inherit;  /* Make images fill their parent's space. Solves IE8. */
  max-width: 100%; /* Add !important if needed. */
  height: auto;    /* Add !important if needed. */
}

 또는

img { max-width:100%; height: auto; } /* Enough everywhere except IE8. */
@media \0screen {img { width: auto }} /* Prevent height distortion in IE8. */

 

정보 출처 : http://stackoverflow.com/questions/8610077/height-auto-in-internet-explorer-8-and-below

Subscribe
Notify of
guest

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.

2 댓글
Oldest
Newest
Inline Feedbacks
View all comments
강민
강민
9 years ago

이거 어디다가 넣어야 되는 건가요???스타일.css 에 넣으면 되는 건가요???

mynain
mynain
9 years ago
Reply to  강민

넵~ 스타일시트에 넣으시면 됩니다.

TOP