当前位置:首页 > 行业动态 > 正文

html如何设置表列宽

在HTML中,可以使用<table>标签来创建表格,并通过<colgroup>和<col>标签来设置列宽,以下是一个详细的例子:

<!DOCTYPE html>
<html>
<head>
    <title>设置表列宽</title>
    <style>
        table {
            width: 100%;
            bordercollapse: collapse;
        }
        th, td {
            border: 1px solid black;
            padding: 8px;
            textalign: left;
        }
        th {
            backgroundcolor: #f2f2f2;
        }
    </style>
</head>
<body>
    <h1>设置表列宽的示例</h1>
    <table>
        <colgroup>
            <col >
            <col >
            <col >
        </colgroup>
        <tr>
            <th>标题1</th>
            <th>标题2</th>
            <th>标题3</th>
        </tr>
        <tr>
            <td>数据1</td>
            <td>数据2</td>
            <td>数据3</td>
        </tr>
        <tr>
            <td>数据4</td>
            <td>数据5</td>
            <td>数据6</td>
        </tr>
    </table>
</body>
</html>

在这个例子中,我们首先定义了一个表格,并设置了宽度为100%,我们使用<colgroup>标签将三个列组合在一起,并为每个列设置了不同的宽度,我们在表格中添加了一些数据。

0