-
Html, CSS 2014‧02‧10
반응형웹에서 이미지 높이 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 […]