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

选择后的勾号html如何写

要创建一个带有选择后的勾号的HTML,可以使用以下代码:

<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF8">
    <meta name="viewport" content="width=devicewidth, initialscale=1.0">
    <title>带勾选的列表</title>
    <style>
        ul {
            liststyletype: none;
        }
        li::before {
            content: "";
            display: inlineblock;
            width: 20px;
            height: 20px;
            marginright: 10px;
            verticalalign: middle;
            backgroundcolor: #fff;
            border: 1px solid #ccc;
        }
        li input[type="checkbox"]:checked + label::before {
            content: "";
            textalign: center;
            lineheight: 20px;
            color: #000;
        }
    </style>
</head>
<body>
    <h1>小标题</h1>
    <table>
        <tr>
            <td>
                <ul>
                    <li><input type="checkbox" id="item1"> <label for="item1">选项1</label></li>
                    <li><input type="checkbox" id="item2"> <label for="item2">选项2</label></li>
                    <li><input type="checkbox" id="item3"> <label for="item3">选项3</label></li>
                </ul>
            </td>
        </tr>
    </table>
</body>
</html>

这段代码创建了一个带有选择后的勾号的HTML页面,我们使用<style>标签定义了一些CSS样式,用于设置列表项的样式和勾选框的样式,在<body>标签中,我们创建了一个小标题和一个表格,表格中包含一个无序列表,列表中的每个列表项都有一个复选框和一个标签,当用户选中复选框时,标签前的勾选框将显示为勾号。

0