글수 6
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<style>
td.top{
border-top-style:dotted;
}
td.left,#g{
border-left-style:dotted;
}
td{
border-right-style:dotted;
border-bottom-style:dotted;
}
</style>
</HEAD>
<BODY>
<TABLE>
<TR>
<TD id=g class=top>aaaa</TD>
<TD class=top>aaaa</TD>
<TD class=top>aaaa</TD>
<TD class=top>aaaa</TD>
</TR>
<TR>
<TD class=left>bbbbb</TD>
<TD>bbbbb</TD>
<TD>b</TD>
<TD>b</TD>
</TR>
<TR>
<TD class=left>c</TD>
<TD>c</TD>
<TD>c</TD>
<TD>c</TD>
</TR>
<TR>
<TD class=left></TD>
<TD></TD>
<TD></TD>
<TD></TD>
</TR>
</TABLE>
</BODY>
</HTML>



<!-- 다르게 적용한 -->
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<style>
td.top{
border-top-style:dotted;
}
td.left,#g{
border-left-style:dotted;
}
td{
border-right-style:dotted;
border-bottom-style:dotted;
}
</style>
</HEAD>
<BODY>
<TABLE>
<TR>
<TD id=g class=top>aaaa</TD>
<TD class=top style="border-bottom-style:double;border-bottom-color:#ff0000">aaaa</TD>
<TD class=top>aaaa</TD>
<TD class=top>aaaa</TD>
</TR>
<TR>
<TD class=left style="border-right-style:double;border-right-color:#ff0000">bbbbb</TD>
<TD style="border-right-style:double;border-right-color=#ff0000;border-bottom-style:double;border-bottom-color=#ff0000">bbbbb</TD>
<TD>b</TD>
<TD>b</TD>
</TR>
<TR>
<TD class=left>c</TD>
<TD>c</TD>
<TD>c</TD>
<TD>c</TD>
</TR>
<TR>
<TD class=left></TD>
<TD></TD>
<TD></TD>
<TD></TD>
</TR>
</TABLE>
</BODY>
</HTML>