Notes to "Introduction to Web Design Day Three | Table Attributes"
align: deprecated W3C
Deprecated Example:
<TABLE align="right">...</TABLE>
CSS Example:
<HEAD>
<STYLE type="text/css">
DIV {text-align: right}
TABLE {display: inline}
</STYLE>
</HEAD>
<BODY>
<DIV>
<TABLE>...</TABLE>
</DIV>
BGCOLOR: deprecated
Deprecated Example:
<TABLE BGCOLOR="red">...</TABLE>
CSS Example:
Specify background and color properties together to avoid
conflicts with user style sheets.
TABLE { background: red ;
color: black;
}
Return to "Introduction
to Web Design Day Three | Table Attributes"
|