i have css look like below
ul.sometclass li a {
display:inline-block;
}
my html look 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.for cross browser support, is it ok to use href inside href ?
2. is my ul.someclass li a affect inner a_href ? seem to me , it affect and on firefox, even though i put as inline, it render as block . on ie is ok