|
-
Jun 15th, 2004, 04:45 AM
#1
cursor: hand; is invalid and works only in IE. cursor: pointer; is proper CSS, but it doesn't work in IE prior to 6.
The invalid but universal solution is
cursor: pointer; cursor: hand;
As for the other issue, <a> can only have inline content and <td> is a block. It's not allowed to nest td inside a. xlink would offer the solution, but you need proper XHTML for that which IE doesn't support - not that it supports xlink either.
However, you can put an <a> around the whole content of the cell (provided it's only inline content) and give it a display of block. That should make if fill the whole cell.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|