Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IE7 Hack for float/block bug

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.

like image 280
F.P Avatar asked Jul 17 '26 18:07

F.P


1 Answers

Try to put the <a> tag at the beginning of the .box

<span class="box"><a href="more">More...</a>Headline</span>
like image 85
fantactuka Avatar answered Jul 19 '26 07:07

fantactuka



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!