투명 1x1 이미지를 이용하여 1의 여백을 늘리거나 점선을 구현하곤 했는데
css에 매료되어 border를 사용하여 구현하려 했지만
점선이 익스에서 무진장 구리게 나오기에,
다시금 1x1 이미지를 이용하여 점선을 구현하려 합니다.
Code: Select all
.dot_bright {
height: 1px;
background: url(../images/common/main_dot_line_bright.gif);
}
Code: Select all
<div class="dot_bright"><img src="./img/common/none.gif" width="1" height="1" border="0" /></div>
Code: Select all
<img src="./img/common/none.gif" width="1" height="1" border="0" />
div만으로 1px 높이가 구현되지 않는다니 ㅡㅡ;;;
<img src="./img/common/none.gif" width="1" height="1" border="0" />를 사용하지 않고 점선을 구현할 수 있는 방법을 알고싶습니다.