display:inline-table

我们两清 提交于 2020-01-22 02:29:10

问题


IE 7 not supporting display:inline-table ?

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


回答1:


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>



回答2:


{
  display: block;
  height: 1%;
}

Try this.



来源:https://stackoverflow.com/questions/2688359/displayinline-table

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!