Cross href browser inside href?
My css looks below
ul.sometclass li a { display:inline-block; } my html looks like
<ul class="someclass"> <li> <a href="outertest.html">outer test <div style="display:inline; float:left;overflow: hidden;"> <a href="innertest.html"><div style="display:inline; float:left;">inner test</a> <a href="innertest.html"><div style="display:inline; float:left;">inner test</a> </div> </a> </li> </ul> 1. to support cross browser, is it ok to use href inside href?
2. does my ul.someclass li a affect the inner a_href ? It seems to me that this affects firefox, although I put it as inline, it displays as a block. on ie ok
To attach attachments, make the following changes ....
You must wrap the nested inside the object tag.
<ul class="someclass"> <li> <a href="outertest.html">outer test <div style="display:inline; float:left;overflow: hidden;"> <object><a href="innertest.html"><div style="display:inline; float:left;">inner test</a></object> <object><a href="innertest.html"><div style="display:inline; float:left;">inner test</a></object> </div> </a> </li> </ul>