-
float버그 float 세로값 적용 안될경우차곡차곡 2015. 6. 2. 18:42
익스 하위 버전에서 float height값이 적용이 안되는 경우
CSS에 넣어놓고 사용하세요.
/* float 세로값 적용안되는 버그에 사용 */
.clearfix:after {
content: "."; /* the period is placed on the page as the last thing before the div closes */
display: block; /* inline elements don't respond to the clear property */
height: 0; /* ensure the period is not visible */
clear: both; /* make the container clear the period */
visibility: hidden; /* further ensures the period is not visible */
}.clearfix {display: inline-block;} /* a fix for IE Mac */
* html .clearfix {height: 1%;}
.clearfix {display: block;}'차곡차곡' 카테고리의 다른 글
모바일에서 a태그 전화걸기 막기 (0) 2020.01.25 [태그,alert] alert창 띄우기, 알림창 띄우기 (0) 2015.01.05 [태그] 이전 페이지로 돌아가기 (0) 2015.01.03 [z-index] 유튜브 동영상 z-index 적용안될때, 꾸르팁! (0) 2015.01.01 [태그,cursor:pointer] 마우스클릭 커서 나오게하기 (0) 2015.01.01