display:inline-table

后端 未结 2 1049
梦谈多话
梦谈多话 2021-01-28 00:38

IE 7 not supporting display:inline-table ?

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

相关标签:
2条回答
  • 2021-01-28 00:53
    {
      display: block;
      height: 1%;
    }
    

    Try this.

    0 讨论(0)
  • 2021-01-28 00:57

    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>
    
    0 讨论(0)
提交回复
热议问题