<table border="0" width="249" height="40" id="table1">
<tr>
<td background="https://www.r10.net/images/menu_bottom.gif">
<p align="center"><font color="#FF0000"><b>Buton 1</b></font></td>
</tr>
</table>Merhaba arkadaşlar tablonun karenin üsütne gidince maus arka plan resminin değişmesini nasıl sağlayabiliriz ?
Tablonun Üstüne Gidince Tablo Arka Planı Değişecek ?
8
●1.692
- 09-11-2009, 17:44:27Üyeliği durduruldu
- 09-11-2009, 18:22:47Üyeliği durdurulduHocam link metninin üstüne gelicne değil.CoMMaNDoS adlı üyeden alıntı: mesajı görüntüle
Tablo 500x500 pxel ya tablonun bir köşesinden azıcık içine girince arka plan değişsin istiyorum
- 09-11-2009, 18:26:03<table class="tablo">
<tr>
<td background="https://www.r10.net/images/menu_bottom.gif">
<p align="center"><font color="#FF0000"><b>Buton 1</b></font></td>
</tr>
</table>
bu tablo kodların.asagıdakilerde css kodların olacak
.tablo {width:249px;height:40px;border:none;}
.tablo:hover {width:249px;height:40px;border:none;background:re d;}
Bu kod ile 249x40 lık alanda herhangi bir yere geldiğinde arkaplanı kırmızı olur. - 09-11-2009, 18:29:30Üyeliği durdurulduHtml
<table width="400" border="0"> <tr> <td class="table"> </td> <td class="table"> </td> </tr> <tr> <td class="table"> </td> <td class="table"> </td> </tr> </table>
Css
.table { background-color: #eaf5ff; } .table:hover { background-color: #f58a10; }Bu kod işimi gördü fakat internet firefoxda çalışıyor
internet explorerde çalışmıyor
- 09-11-2009, 18:54:38Üyeliği durdurulduHepsinde çalışan cinsinden lazım okul sitesinde kullancamErturk adlı üyeden alıntı: mesajı görüntüle
- 11-11-2009, 19:21:34<tr> tagına şunu eklersen olacaktır
<tr onMouseOver="this.bgColor='yellow';" onMouseOut="this.bgColor='white';">
örnek
<table border="1" width="500"> <tr onMouseOver="this.bgColor='yellow';" onMouseOut="this.bgColor='white';"> <td>r10</td> </tr> <tr onMouseOver="this.bgColor='red';" onMouseOut="this.bgColor='white';"> <td>r10</td> </tr> </table>