上一篇
选择后的勾号html如何写
- 行业动态
- 2024-04-08
- 2
要创建一个带有选择后的勾号的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>标签中,我们创建了一个小标题和一个表格,表格中包含一个无序列表,列表中的每个列表项都有一个复选框和一个标签,当用户选中复选框时,标签前的勾选框将显示为勾号。
本站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本站,有问题联系侵删!
本文链接:http://www.xixizhuji.com/fuzhu/319593.html