20. marts 2003 - 18:45
Der er
4 kommentarer og 1 løsning
Lave en cellen til link?
Hej Hvordan laver jeg så man også kan klikke på cellen (Så det ikke kun er teksten der er et link)? <td width="100%" style="padding: 1" onMouseover='this.style.backgroundColor="#FFFFFF"' onMouseOut='this.style.backgroundColor="#000000"' height="1"><b><font face="Verdana" style="font-size: 11px;"> » <a href=forside.htm"> Forside</a></font></b></td>
Annonceindlæg fra Infor
20. marts 2003 - 18:48
#3
<td width="100%" style="padding: 1 cursor: pointer;" onMouseover='this.style.backgroundColor="#FFFFFF"' onMouseOut='this.style.backgroundColor="#000000"' height="1" onclick="window.location='side.html';"><b><font face="Verdana" style="font-size: 11px;"> » Forside</font></b></td>
20. marts 2003 - 18:49
#4
<td width="100%" style="padding: 1; cursor: pointer;" onMouseover='this.style.backgroundColor="#FFFFFF"' onMouseOut='this.style.backgroundColor="#000000"' height="1" onclick="window.location='side.html';"><b><font face="Verdana" style="font-size: 11px;"> » Forside</font></b></td> manglede lige et ; efter padding: 1
20. marts 2003 - 18:50
#5
Flere fejl efter min mening: <td width="100%" style="padding: 1px; cursor: pointer;" onMouseover="this.style.backgroundColor='#FFFFFF'" onMouseOut="this.style.backgroundColor='#000000'" height="1" onclick="window.location='side.html';"><b><font face="Verdana" style="font-size: 11px;"> » Forside</font></b></td>