웹떠돌이
[크롬] table에서 tr을display block할때 깨지는 오류 버그 본문
크롬에서만 발견되는 오류로 예를들어,
<table><tr id="aa" style="display:hidden"><td colspan="2">ㅁㅁㅁ</td><td></td>213213123</tr></table>
이란 코드가 있을때
document.getElementById("aa").style.display='block';
라는 코드를 사용하면 테이블이 깨진다
<해결방법>
document.getElementById("aa").style.display='table-row';
block 대신 table-row를 사용하면 된다.
'창고' 카테고리의 다른 글
[펌]프로그래밍 코딩 중국어 용어 (0) | 2015.11.13 |
---|---|
Front end 에서 URI 를 파싱할때 (0) | 2014.12.16 |
nth-child 를 ie6,7,8 에서 사용하는 방법 (0) | 2014.11.07 |
MySQL 원격 증분 백업 – Percona XtraBackup (0) | 2014.06.30 |
Font Awesome (0) | 2014.03.26 |
Comments