div模拟响应列表

时间:2013-07-18 16:18:34

标签: html css html-table

我想使用div完成类似下面的表的相同结果,这样我就可以使其响应并调整每个表行的列数。 (例如,在第一行有3个响应列,然后在第二行有4个响应列)。我也想避免在单独的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; }

Here is a fiddle

是否可以使用

之类的东西
<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>

1 个答案:

答案 0 :(得分: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/