IE에서 empty-cells 적용하기
Publisher/CSS / 2008. 2. 15. 11:13
empty-cells:show 가 IE7 에서 먹지 않는 문제로 많이 고민하다.
<!--[if lte IE 7]>
<script type="text/javascript">
window.onload = function() {
tds = document.all.tags("td");
for (x = 0; x < tds.length; x++) {
if (tds[x].innerHTML == '') tds[x].innerHTML = " ";
}
}
</script>
<![endif]-->
<!--[if lte IE 7]>
<script type="text/javascript">
window.onload = function() {
tds = document.all.tags("td");
for (x = 0; x < tds.length; x++) {
if (tds[x].innerHTML == '') tds[x].innerHTML = " ";
}
}
</script>
<![endif]-->
'Publisher > CSS' 카테고리의 다른 글
웹폰트로 이쁜 웹페이지를 꾸며보자 (4) | 2008.07.23 |
---|---|
CSS 2.0 표준 Reference (0) | 2008.04.15 |
CSS를 이용한 XHTML1 strict 모드의 height100% (3) | 2008.04.08 |
CSS와 SVG를 fisheye 애니메이션 (0) | 2008.04.02 |
IE6,IE7 ,FireFox 에 대해 CSS 맞추기 (0) | 2008.03.11 |