1

我有这个代码:

<fieldset>
 <label>show/hide table</label>
  <table class="tableStyle2">
    table code - a wide table
  </table>
</fieldset>

字段集在 Chrome 和 Firefox 中自动调整其宽度,但在 IE8 中不自动调整。有解决办法吗?试过:

.tableStyle2 {
    border-collapse: collapse;
    font-family: 'Lucida Grande','Lucida Sans Unicode','Verdana,Arial,Helvetica,sans-serif';
    width: 100%;
    font-size: 12px;
    overflow: none;
}
4

2 回答 2

3

添加disply:inline-blockfieldset

fieldset{width:auto; display:inline-block}​

演示

于 2012-10-24T10:31:55.433 回答
1

您是否尝试将宽度样式直接应用于字段集属性?

<fieldset style="width: 100%;">...</fieldset>
于 2012-10-24T10:16:56.253 回答