0

我想使用 div 完成如下表的相同结果,以便我可以使其响应并调整每个表行的列数。(例如,在第一行有 3 个响应列,然后在第二行有四个响应列)。我也想避免在单独的 tr 中写单个单词

有没有办法做到这一点?

这是当前表格

<table>
    <thead>
        <tr>
            <th class="short-column">Short Column</th> <!-- th sets the width -->
            <th class="short-column">Short Column</th> <!-- th sets the width -->
            <th class="long-column">Long Column</th> <!-- th sets the width -->
        </tr>
    </thead>

    <tbody>
        <tr>
            <td class="lite-gray">Short Column</td> <!-- td inherits th width -->
            <td class="lite-gray">Short Column</td> <!-- td inherits th width -->
            <td class="gray">Long Column</td> <!-- td inherits th width -->
        </tr>
    </tbody>
</table>


table { table-layout: fixed; border-collapse: collapse; border-spacing: 0; width: 100%; }

.short-column { background: yellow; width: 30%; }
.long-column { background: lime; width: 40%; }

.lite-gray { background: #f2f2f2; }
.gray { background: #cccccc; }

这是一个小提琴

是否可以使用类似的东西

<table width="100%" border="0" cellspacing="0" cellpadding="4">
          <tr>
         <td>
                 <!--<div>THREE COLUMNS</div>-->
             </td>
         </tr>  
          <tr>
         <td>
                 <!--<div>FOUR COLUMNS?</div>-->
             </td>
         </tr>  
</table>
4

1 回答 1

2

如果将浮动 div 插入 td 元素,则可以创建相同的布局:

<table width="100%" border="1" cellspacing="0" cellpadding="4">
    <tr>
        <td>
            <!--<div>THREE COLUMNS</div>-->
            <div class="three"></div>
            <div class="three"></div>
            <div class="half"></div>
        </td>
    </tr>
    <tr>
        <td>
            <!--<div>FOUR COLUMNS?</div>-->
            <div class="four"></div>
            <div class="four"></div>
            <div class="four"></div>
            <div class="four"></div>
        </td>
    </tr>
</table>

然后只需为宽度添加一些样式就可以了!

演示:http: //jsfiddle.net/TdmkG/1/

于 2013-07-18T17:32:51.020 回答