Notes to "Body Tag Attributes"
1.
background: deprecated
Deprecated Example:
<BODY BACKGROUND="image.gif">
W3C
CSS Example:
<STYLE TYPE="text/css">
BODY { background: url(starfiel.gif) black }
</STYLE>
The color specified after the image is for when the image is not available.
2.
BGCOLOR: deprecated W3C
Deprecated Example:
<BODY BGCOLOR="#FFFFCC">
W3C
CSS Example:
<STYLE type="text/css">
BODY { background: red ;}
</STYLE>
3.
text: deprecated
Deprecated Example:
<BODY BGCOLOR="#FF0000" TEXT="#FFFFFF">
CSS Example:
<STYLE type="text/css">
BODY { background: red ; color: white;}
</STYLE>
4.
LINK, VLINK, ALINK: deprecated
Deprecated Example:
<BODY link="#0066FF" vlink="#FF00FF" alink="#FF0033">
CSS Example:
<STYLE type="text/css">
A:link { color: blue }
A:visited { color: pink }
A:active { color: red }
</STYLE>
Return to "Body Tag Attributes"
|