원본출처: http://www.positioniseverything.net/explorer/doubled-margin.html
IE6에서 float방향과 동일한 방향의 margin 값이 2배로 되는 버그.
요렇게 하고 싶어서
요렇게 하면
.floatbox {
float: left;
width: 150px;
height: 150px;
margin: 5px 0 5px 100px;
/* This last value applies the 100px left margin */
}
float: left;
width: 150px;
height: 150px;
margin: 5px 0 5px 100px;
/* This last value applies the 100px left margin */
}
IE6에서는 이렇게 나옴.
해결책
.floatbox {
float: left;
width: 150px;
height: 150px;
margin: 5px 0 5px 100px;
display: inline;
}
float: left;
width: 150px;
height: 150px;
margin: 5px 0 5px 100px;
display: inline;
}
'HTML, CSS' 카테고리의 다른 글
[HTML] 태그 리스트 (0) | 2010.01.27 |
---|---|
embed 등을 통해 웹페이지에서 미디어파일을 재생이 안될 때 (4) | 2009.07.06 |
HTTP 1.1 RFC 문서 (0) | 2009.05.28 |
TR 의 display 조절 (0) | 2009.04.18 |
HTML 에 사용되는 영문색깔 이름. (Reserved Color Keyword) (0) | 2009.04.18 |