CSS ile Tablo Yapımı -ÖRNEK
HTML Kodları;
[code lang=”html”]
<table border="2">
<tr>
<th>Sınıf</th>
<th>Başkan</th>
<th>Yardımcı</th>
</tr>
<tr class="ext1">
<td>11 MB</td>
<td>Kubilay Aydoğan</td>
<td>Sevim İkbal</td>
</tr>
<tr class="ext2">
<td>11 AB</td>
<td>Gürkan Öztürk</td>
<td>Ömer Ceyhun</td>
</tr>
<tr class="ext3">
<td>11 TB</td>
<td>Ferhat Kara</td>
<td>Talha Bakır</td>
</tr>
</table>
[/code]
CSS Kodları ;
[code lang=”css”]
table
{
height:200px;
width:600px;
}
th
{
background-color:#00F;
}
.ext1
{
background-color:#06F;
}
.ext2
{
background-color:#0FF;
}
.ext3
{
background-color:#0FC;
}
[/code]
