HTML/CSS/Table Attributes/cellspacing

Материал из Web эксперт
Версия от 08:16, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"cellspacing" sets the width of the empty space between cells in a table

    
<HTML>
<head>
<Title>Example For cellspacing</Title>
</head>
<BODY>
<table width="542" cellSpacing="15">
   <tr><th height="79" colspan="2">This table has cellSpacing="15"</th></tr>
   <tr><td height="79">Cell 1</td>
       <td height="79">Cell 2 content</td>
       <td height="79">Loooooooooooooooooooooooooooooooooong</td>
   </tr>
</table>
</BODY>
</HTML>