Tags:
html
css
Hvordan får man en table cell til at skifte bgcolor når man fører musen over den?
Ligesom på www.houze.dk
- FreaK aka Marco
--
Learn to live with it, or die with it...
1 svar postet i denne tråd vises herunder
0 indlæg har modtaget i alt 0 karma
0
Hvordan får man en table cell til at skifte bgcolor når man fører musen over den?
Ligesom på www.houze.dk
- FreaK aka Marco
--
Learn to live with it, or die with it...
Hej,
lidt kode:
<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Ny side 1</title>
<script>
function icbMOver(iCtrl) {
iCtrl.style.backgroundColor='#ff0000';
}
function icbMOut(iCtrl) {
iCtrl.style.backgroundColor='#ffffff';
}
</script>
</head>
<body>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr>
<td width="100%" onmouseover="icbMOver(this)" onmouseout="icbMOut(this)">test1</td>
</tr>
<tr>
<td width="100%" onmouseover="icbMOver(this)" onmouseout="icbMOut(this)">test2</td>
</tr>
</table>
</body>
</html>
Håber det kan bruges