Home > Web Front-end > Front-end Q&A > How to use html colgroup tag

How to use html colgroup tag

藏色散人
Release: 2019-05-26 14:07:12
Original
3447 people have browsed it

html The colgroup tag is used to combine columns in the table in order to format them. The

tag can only be used in table elements.

How to use html colgroup tag

#What does the colgroup tag mean? How to use the html colgroup tag

Function: Combine columns in the table to format them.

Note:

The

tag is useful if you need to apply styles to all columns, so that you don't need to repeatedly apply styles to each cell and row. The tag can only be used within table elements.

Note:

All major browsers support the

tag. Firefox, Chrome, and Safari only support the span and width attributes of the colgroup element.

html colgroup tag usage example

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<table width="100%" border="1">
    <colgroup span="2"></colgroup>
    <colgroup style="color:#0000FF;"></colgroup>
    <tr>
        <th>商品种类</th>
        <th>名称</th>
        <th>价格</th>
    </tr>
    <tr>
        <td>衣服</td>
        <td>衬衣</td>
        <td>53元</td>
    </tr>
    <tr>
        <td>鞋子</td>
        <td>板鞋</td>
        <td>199元</td>
    </tr>
</table>
</body>
</html>
Copy after login

Effect:

How to use html colgroup tag

The above is the detailed content of How to use html colgroup tag. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template