div 질문. 정보
div 질문.
본문
불여우에서는 1픽셀이 출력 되는데,
IE 에서는 10픽셀정도에서 더이상 줄여지지 않네요.
이에 대한 해결책이 있나요?
<style type="text/css">
#box
{
width:100px;
height:1px;
border-bottom:1px solid #EEEEEE;
}
</style>
<div id="box"></div>
IE 에서는 10픽셀정도에서 더이상 줄여지지 않네요.
이에 대한 해결책이 있나요?
<style type="text/css">
#box
{
width:100px;
height:1px;
border-bottom:1px solid #EEEEEE;
}
</style>
<div id="box"></div>
댓글 전체
적어주신 소스대로 해보니 되는데요..다른 css 속성과 겹치는 부분이 있는지 확인해보셔야 할 것 같네요..
뭘 원하시는지 모르겠는데...
line-height:1px;
넣어보세요.
이걸 원하시는건지...
line-height:1px;
넣어보세요.
이걸 원하시는건지...
ie에서 이걸 말하시는 건가요?
<style type="text/css">
#box
{
width:100px;
height:1px;
border-bottom:1px solid #EEEEEE;
border-right:1px solid #0000ff;
border-top:1px solid #00ff00;
border-left:1px solid #ff0000;
}
</style>
<body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>
<div id="box">이건가?</div> 문서출력부분인 body가기본적으로 가지고 있는 margin을 없앰
[div]에 float:left는 적용안했음.
</body>
음 어렵네요.
<style type="text/css">
#box
{
width:100px;
height:1px;
border-bottom:1px solid #EEEEEE;
border-right:1px solid #0000ff;
border-top:1px solid #00ff00;
border-left:1px solid #ff0000;
}
</style>
<body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>
<div id="box">이건가?</div> 문서출력부분인 body가기본적으로 가지고 있는 margin을 없앰
[div]에 float:left는 적용안했음.
</body>
음 어렵네요.

답변 주신 분들 감사합니다. ^^
제가 원하는 답이 김영삼님께서 올려주셨네요. ^^
제가 원하는 답이 김영삼님께서 올려주셨네요. ^^

답변8