码迷,mamicode.com
首页 > 其他好文 > 详细

table-列组

时间:2017-09-17 01:38:01      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:body   blog   asc   meta   src   style   渲染   script   oct   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>colgroup</title>
    <style>
        .engine{
            background-color: aquamarine;
        }
    </style>
</head>
<body>
<table border="1">
    <!--列组 -->
    <colgroup>
        <col class="browser">
        <col class="engine" span="2">
    </colgroup>
    <thead>
        <tr>
            <th>浏览器</th>
            <th>渲染引擎</th>
            <th>JavaScript 引擎</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th>Chrome</th>
            <td>Blink</td>
            <td>V8</td>
        </tr>
        <tr>
            <th>Opera</th>
            <td>Blink</td>
            <td>V8</td>
        </tr>
        <tr>
            <th>Edge</th>
            <td>EdgeHTML</td>
            <td>Chakra</td>
        </tr>
    </tbody>
</table>
</body>
</html>

效果:

技术分享

table-列组

标签:body   blog   asc   meta   src   style   渲染   script   oct   

原文地址:http://www.cnblogs.com/sunxirui00/p/7533533.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!