KVCH

Advanced Member | Редактировать | Профиль | Сообщение | ICQ | Цитировать | Сообщить модератору
Код: <html> <head> <script>function cb(t, n) {if (n) t.style.backgroundColor = '#E5E5E5'; else t.style.backgroundColor = '#FFFFFF';}</script> </head> <body> <table border="1" cellpadding="0" style="border-collapse: collapse" width="100%" id="table1"> <tr onmouseout="cb(this, 0)" onmouseover="cb(this, 1)"> <td> </td> <td> </td> <td> </td> </tr> <tr> <td onmouseout="cb(this, 0)" onmouseover="cb(this, 1)"> </td> <td onmouseout="cb(this, 0)" onmouseover="cb(this, 1)"> </td> <td onmouseout="cb(this, 0)" onmouseover="cb(this, 1)"> </td> </tr> </table> </body> </html> | или Код: <html> <head> <script>function cb(t, n) {if (n) t.style.backgroundColor = '#E5E5E5'; else t.style.backgroundColor = '#FFFFFF';}</script> </head> <body> <table border="1" cellpadding="0" style="border-collapse: collapse" width="100%" id="table1" onmouseout="cb(this, 0)" onmouseover="cb(this, 1)"> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </table> </body> </html> |
| Всего записей: 1741 | Зарегистр. 03-03-2002 | Отправлено: 16:30 10-01-2004 | Исправлено: KVCH, 16:32 10-01-2004 |
|