티스토리 뷰
레어아웃 제작할때 Float 기반으로 많이 작성하는데요.
float 클리어 하는 여러 방법이 있어서 소개합니다.
출처 : http://www.paulund.co.uk/css-clearing-floats-snippet
데모 : http://jsfiddle.net/teddyrised/t5ynw/
.clearfix:after { /* für Firefox, IE8, Opera, Safari, etc. */
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
* + html .clearfix { /* for IE7 */
display: inline-block;
}
* html .clearfix { /* for IE6 */
height: 1%;
}
-------------------------
/* For modern browsers */
.clearfix:before,
.clearfix:after {
content:"";
display:table;
}
.clearfix:after {
clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.clearfix {
zoom:1;
}
<div class="clearfix"> </div>
Clearfix With Overflow:hidden
'웹개발 > HTML&CSS' 카테고리의 다른 글
SVG 패턴 (0) | 2014.07.09 |
---|---|
펌 ) 타도메인간 iframe 엑세스 제어 방법 (1) | 2013.04.23 |
IE 에서 'position:fixed' 를 줘보자. (0) | 2013.04.02 |
css3 , 트랜지션 애니메이션 예제 (0) | 2012.12.13 |
IE 버전 다른 스타일 적용하기 (0) | 2012.06.14 |
댓글