anchor tags

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In the followng expression:

<a href="(e-mail address removed)">CONTENT</a>

what is acceptable as CONTENT? Specifically, if I try to wrap an entire
table with the anchor tag, the link doesn't work in MSIE. Why not? (This
works in Firefox.)

Thanks.
 
syrad said:
In the followng expression:

<a href="(e-mail address removed)">CONTENT</a>

what is acceptable as CONTENT? Specifically, if I try to wrap an entire
table with the anchor tag, the link doesn't work in MSIE. Why not? (This
works in Firefox.)

It must be inline content.
 
C A Upsdell" <""cupsdellXXX"@-@-@XXXups said:
It must be inline content.

OK, but if that's the case, shouldn't the following code make an entire
table cell work as a link:

<a href="(e-mail address removed)"><span><td>.....</td></span></a>

(Isn't "<span>" an inline tag?) However, this does not work.

Any thoughts?
 
syrad said:
:




OK, but if that's the case, shouldn't the following code make an entire
table cell work as a link:

<a href="(e-mail address removed)"><span><td>.....</td></span></a>

(Isn't "<span>" an inline tag?) However, this does not work.

Any thoughts?

span is an inline tag, but td is not. you can't put td inside span.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top