-1

试图将这两列设置为各有 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>

在此处输入图像描述

4

1 回答 1

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

于 2013-03-07T16:35:45.800 回答