Листинг 2.6. Тип рамки
<HTML>
<HEAD>
<TITLE>Тип рамки</TITLE>
<STYLE>
TABLE { border-left-style: dashed; border-right-style: dotted;
border-top-style: solid; border-bottom-style: groove }
TD { border-left-style: none; border-right-style: none;
border-top-style: none; border-bottom-style: none; text-align: center }
CAPTION { border-top-style: solid }
P { border-left-style: dotted; border-right-style: dotted;
border-top-style: dotted; border-bottom-style: dotted }
</STYLE>
</HEAD>
<BODY>
<TABLE align="center" width="200">
<CAPTION>Заголовок таблицы<CAPTION>
<TR>
<TD>1</TD>
<TD>2</TD>
</TR>
<TR>
<TD>3</TD>
<TD>4</TD>
</TD>
</TR>
</TABLE>
<P>Текст в рамке</P>
</BODY>
</HTML>
Толщина линии рамки
TABLE { border-left-width: 5; border-right-width: 5; border-top-width: 0; border-bottom-width: 10 }
TABLE { border-left-width: medium; border-right-width: medium;
border-top-width: thin; border-bottom-width: thick }
Цвет линии рамки
TABLE { border-left-color: red; border-right-color: #000080; border-top-color: green; border-bottom-color: black }
Фон элемента
Цвет фона
BODY { background-color: green }
TD { background-color: silver }
TD { background-color: transparent }
Фоновый рисунок
BODY { background-image: url(foto1.gif) }
BODY { background-image: none }