table cells as links?

is it possible to change then content of a table cell (e.g. its background color) as roll-over effect of a link contained in it! (not just the bg color of the link!)<br />
<br />
another approach to what i'm trying to do would be to set an entire cell of a table as a hyperlink, but i think that's not possible... maybe i'm wrong. <br />
<br />
for any advice/solution, CHEERS!!! <br />
<br />
fabalicious<!--content-->I believe this question was asked and answered only a couple of days ago in this forum.<br />
<br />
Use forum search and you'll probably find it before I do.<!--content-->Hi there fabalicious,<br />
<br />
I have just popped this together....<html><br />
<head><br />
<br />
<style type="text/css"><br />
<!--<br />
table<br />
{width:150;height:150px;border:solid 1px #000000;text-align:center;}<br />
td<br />
{background-color:#ffffff;font-size:12px;color:#ffffff;}<br />
//--><br />
</style><br />
<br />
</head><br />
<body><br />
<br />
<table><tr><br />
<td onmouseover="this.style.backgroundColor='#000000' "; onmouseout="this.style.backgroundColor='#ffffff' "; <br />
onclick="window.open('http://www.htmlforums.com/showthread.php?s=&threadid=31309');">click anywhere</td><br />
</tr></table><br />
</body><br />
</html><br />
c:cool::cool:thead<!--content-->I纾沞 been there before....<br />
Look at this (<!-- m --><a class="postlink" href="http://www.htmlforums.com/showthread.php?s=&threadid=31188">http://www.htmlforums.com/showthread.ph ... adid=31188</a><!-- m -->) ...;)<!--content-->thanks a lot!<!--content-->Hehe.. actually, Scoutt helped me with this just a couple of days ago.. :P<!--content-->OK, thanks for your replies.<br />
works fine so far, but i have new problem now.<br />
the links concerned change the content in a different frame. as i don't have a <A HREF=http://www.htmlforums.com/archive/index.php/..> tag anymore, i can't use TARGET anymore either. at least it didn't work. any ideas for that? :D<!--content-->
 
Back
Top