How to get display inline to work with IE

Status
Not open for further replies.

tiyerl

New Member
Hi, just thought i would post this quick fix to get the display inline to work properly for IE 7, usually for firefox all you need to add to the div is:

Code:
display: inline;

But that doesn't work for IE 7, you must also float it so you will use:

Code:
float: left;
display: inline;

Its basic enough, but its handy to know.
 
Status
Not open for further replies.
Top