Code: Select all
<?xml version="1.0" encoding="euc-kr"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
<head>
<meta http-equiv='content-type' content='text/html; charset=euc-kr' />
<title> </title>
<style>
<!--
body {
font-size : 10pt;
text-align : center;
font-weight : bold;
color : green;
}
-->
</style>
</head>
<body>
<div >
스타일 적용됨
</div>
<table>
<tr>
<td>00 </td> <td>01</td>
</tr>
<tr>
<td>10 </td> <td>11</td>
</tr>
<tr>
<td>20 </td> <td>21</td>
</tr>
</table>
</body>
</html>
IE 에서 보면 테이블이 가운데에 오기는 하는데 폰트 크기와 볼드 적용이
되지 않습니다. 신기한 건 색깔은 적용된다는 것입니다.
테이블에 css 를 쓸 때는 특별히 뭔가를 더 해줘야 하는 것인가요???