I'm having trouble getting this layout to work in IE7:
<span class="box">Headline<a href="more">More...</a></span>
.box {
display: block;
}
.box a {
display: inline;
float: right;
}
All browsers display it in the right manner;
Headline More...
But IE7 makes this:
Headline
More...
Any ideas on fixing this? I tried setting the a to block, inline-block, anything, didn't work. Also with some often used fixes like box-model etc.
Try to put the <a> tag at the beginning of the .box
<span class="box"><a href="more">More...</a>Headline</span>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With