html中的checkbox如何修改样式?

2024-11-08 21:13:23
推荐回答(1个)
回答1:

把以下代码添加到css样式里即可修改checkbo样式:

[css] view plain copy

input[type=radio],input[type=checkbox]  {  

display: inline-block;  

vertical-align: middle;  

width: 20px;  

height: 20px;  

margin-left: 5px;  

-webkit-appearance: none;  

background-color: transparent;  

border: 0;  

outline: 0 !important;  

line-height: 20px;  

color: #d8d8d8;  

}  

input[type=radio]:after  {  

content: "";  

display:block;  

width: 20px;  

height: 20px;  

border-radius: 50%;  

text-align: center;  

line-height: 14px;  

font-size: 16px;  

color: #fff;  

border: 2px solid #ddd;  

background-color: #fff;  

box-sizing:border-box;  

}  

input[type=checkbox]:after  {  

content: "";  

display:block;  

width: 20px;  

height: 20px;  

text-align: center;  

line-height: 14px;  

font-size: 16px;  

color: #fff;  

border: 2px solid #ddd;  

background-color: #fff;  

box-sizing:border-box;  

}  

input[type=checkbox]:checked:after  {  

border: 4px solid #ddd;  

background-color: #37AF6E;  

}  

input[type=radio]:checked:after  {  

content: "L";  

transform:matrix(-0.766044,-0.642788,-0.642788,0.766044,0,0);  

-webkit-transform:matrix(-0.766044,-0.642788,-0.642788,0.766044,0,0);  

border-color: #37AF6E;  

background-color: #37AF6E;  

}

Html5标签:

  1. 定义注释。

  2. 定义文档类型。

  3. 定义锚。

  4. 定义缩写。

  5. 定义只取首字母的缩写。

  6. 定义文档作者或拥有者的联系信息。

  7. 不赞成使用。定义嵌入的 applet。

  8. 定义图像映射内部的区域。

  9. 定义文章。

  10. 定义粗体字。

  11. 定义页面中所有链接的默认地址或默认目标。

  12. 不赞成使用。定义页面中文本的默认字体、颜色或尺寸。

  13. 定义文本的文本方向,使其脱离其周围文本的方向设置。

  14. 定义文字方向。

  15. 定义大号文本。

  16. 定义长的引用。

  17. 定义文档的主体。


  18. 定义简单的折行。

  19. 定义图形。

  20. 定义表格标题。

  21. 不赞成使用。定义居中文本。

  22. 定义引用(citation)。

  23. 定义计算机代码文本。