İÇERİK KODU:
<!-- http://www.kodkeyfi.tr.gg -->
<html>
<head>
<title>Hover Table Color</title>
<style type="text/css">
<!--
td.test {
border: 5px solid red;
color: black;
background: cyan;
padding: 50px;
}
td.test2 {
border: 5px solid yellow;
color: white;
background: black;
padding: 50px;
}
-->
</style>
</head>
<body>
<table summary="test">
<tr><td class="test" onmouseover="this.className='test2'"
onmouseout="this.className='test'">Hello world!</td></tr>
</table>
</body>
<!-- http://www.kodkeyfi.tr.gg -->
AÇIKLAMALAR :
Mausunuzu tablo üzerine getirdiğinizde renk değiştiren tablo.
|