IE7忽略了colgroup?

时间:2013-03-07 16:21:46

标签: html css

尝试将这两列设置为每个都有50%的宽度,但在IE7中忽略了colgroup,是否有人可以提出解决此问题的方法?

 <table id="briefEquationBuilder" class="fullWidthTable">
        <colgroup>
          <col span="1" align="left" style="width:50%">
          <col span="1" style="background-color:yellow">
        </colgroup>

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以这样设置:

<table id="briefEquationBuilder" class="fullWidthTable">
  <colgroup class="yours">
    <col/><col/>
  </colgroup>
  <tr>
    <td colspan="2">copy</td>
  </tr>
</table>

但........为什么不使用 td并添加类

colgroup对此几乎没有支持:

http://marc.baffl.co.uk/bugs