Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

IE 7 not supporting display:inline-table ?

Other browsers supports. What should I do for the alternate solution?

share|improve this question
What are you attempting to do with the inline-table display property? If you describe it perhaps someone could suggest a solution. – Josiah Apr 22 '10 at 6:01

2 Answers

Firefox and IE8 support display:inline-table;. IE6 supports display:inline;

<style>.inline_table {display:inline-table;*display:inline;}</style>
<table class="inline_table"><tr><td>kk1</td></tr></table>
<table class="inline_table"><tr><td>kk2</td></tr></table>
share|improve this answer

height: 1%; display: block;

Try this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.