开发者

display:inline-table

开发者 https://www.devze.com 2022-12-27 22:55 出处:网络
IE 7 not supp开发者_StackOverfloworting display:inline-table ? Other browsers supports. What should I do for the alternate solution?Firefox and IE8 support display:inline-table;. IE6 supports display

IE 7 not supp开发者_StackOverfloworting display:inline-table ?

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


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>


{
  display: block;
  height: 1%;
}

Try this.

0

精彩评论

暂无评论...
验证码 换一张
取 消