| 
 Posted by Alan J. Flavell on 09/18/05 18:48 
On Sat, 17 Sep 2005, Jonathan N. Little wrote: 
 
> You can define an 'A' element as block within a TD, here is a real hideously 
> styled example: 
> 
> TABLE { 
> 	width: 300px; 
> } 
> TD A { 
> 	display: block; 
> 	width: 90%; 
> 	height: 90%; 
> 	background-color: blue; 
> 	color: yellow; 
> 	border: 3px inset blue; 
> 	text-decoration: none;} 
> TD A:hover { 
> 	background-color: yellow; 
> 	color: blue; 
> 	border: 3px outset yellow; 
> } 
>  
> <table> 
> <tr><td><a href="#">Test One</a></td></tr> 
> <tr><td><a href="#">Test Two</a></td></tr> 
> </table> 
 
Gosh, and it *does* work in IE.  Seems that what I'd been trying was  
somehow different.  You give me fresh hope of getting the actual  
requirement to work. 
 
Thanks for your help.
 
[Back to original message] 
 |