Legend Doesn't Float Left On Ie7 December 05, 2023 Post a Comment I am having trouble on IE7. I have following html format. Legend Div 1Solution 1: Andres almost had it. Add a "*float: none" after the "float: left" and you should be good..wrapper.ct { display:inline-block; float:left; *display:inline; *float:none; } CopyHere's the updated fiddleSolution 2: IE does not understand display:inline-block, you can use display:inline instead with a hack to target that browser alone, like so: .wrapper.ct { display:inline-block; *display:inline; float:left } CopySolution 3: For IE7 only, try setting to display: inline (not inline-block).Baca JugaSelect2 Doesn't Render ProperlyZ-index Not Overlaying Over Divs Further Down In The DomHow To Vertically Align Text In Ie7 Without Using Css 'table-cell' Property?Right, forgot how much a pain legend is. You likely need to use absolute position to place it as such - with a left margin on the others or padding-left on the parent. Depends on the design. Share You may like these postsMedia Queries Fail Inside Ie9 IframeChange Owl Carousel 2 Options After Setup?Editing The Logo Link Destination In Joomla (yootheme Warp 7)Can You Align Text By A Symbol In It? Post a Comment for "Legend Doesn't Float Left On Ie7"
Post a Comment for "Legend Doesn't Float Left On Ie7"