table-layout:fixed ie6 오류
table-layout:fixed에 관한 심각한 오류였다. -ㅅ-;; 작업시 아래 소스 같이 colgroup을 이용하여 셀의 사이즈를 지정하고 table에 table-layout:fixed 스타일을 넣은 경우였다.
1 2 3 4 5 6 7 8 |
<table style="width:100%; table-layout:fixed;"> <colgoup><col width="100px" /><col /><col width="100px" /></colgroup> <tr> <td>어쩌구</td> <td>저쩌구</td> <td>^^</td> </tr> </table> |
헌데 개발할 때는 반복되는 부분의 html소스를 개발 파일에 넣으니 아래와 같이 남아있으니 ie6에서 에러가 나서 닫힌다.
1 2 3 4 |
<table style="width:100%; table-layout:fixed;"> <colgoup><col width="100px" /><col /><col width="100px" /></colgroup> <% 코드 %> </table> |
사이즈를 계산하다 … Continue reading