HTML KODU :
<table class="table table-hover">
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>Doe</td>
<td>john@example.com</td>
</tr>
<tr>
<td>Mary</td>
<td>Moe</td>
<td>mary@example.com</td>
</tr>
<tr>
<td>July</td>
<td>Dooley</td>
<td>july@example.com</td>
</tr>
</tbody>
CSS KODU
.table-hover thead tr:hover th, .table-hover tbody tr:hover td {
background-color: #D1D119;
}
Css kodu şunu gösterir:
fareyi satırın üzerine getirin:
.table-hover> thead> tr: hover
arka plan rengi # D1D119 olarak değişecek
inci
Herkes için aynı eylem olacak
.table-hover tbody tr: hover td
tdgerekli? (Özür dilerim