user1046671
user1046671

Reputation: 201

Problems with display inline-block in IE7

I am using .ui-helper-clearfix { display: inline-block; } in jquery_custom_datatable.css and jquery-ui-1.8.12.custom.css while fixing the browser compatibilty issues.I came over with a issue where i need to remove .ui-helper-clearfix { display: inline-block; } which is effecting an extra width on my table only in IE7.Removing it havent effected the css on IE8 and mozilla.But made some adverse affects on other tables in IE7 such as removing the width where it is needed.I want to know is there any alternative for this one so that instead of removing it will there be any other alterative fix for .ui-helper-clearfix { display: inline-block; } for IE7. Thanks

Upvotes: 1

Views: 579

Answers (1)

Diodeus - James MacFarlane
Diodeus - James MacFarlane

Reputation: 114367

Before inline-block, we used floats. This may work in your situation, but you'll probably have to tweak your CSS a bit.

Upvotes: 1

Related Questions