侧边栏壁纸
博主头像
黑山老妖 博主等级

记录精彩的坎坷人生

  • 累计撰写 82 篇文章
  • 累计创建 94 个标签
  • 累计收到 9 条评论

目 录CONTENT

文章目录

修改radio默认样式

我是我村的希望
2023-08-05 / 0 评论 / 0 点赞 / 8 阅读 / 0 字 / 正在检测是否收录...
温馨提示:
本文最后更新于244天前,若内容或图片失效,请留言反馈。 部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

本站图片存储及加速服务由壹加图床提供

input[type="radio"]{
    width: 20px;
    height:20px;
    margin:0 4px 0 0;
    appearance:none;
    position:relative;
}
/*未被选中的样式*/
input[type="radio"]::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
}
/*选中的样式*/
input[type="radio"]:checked::before{
    content: "\2713"; /*2713表示选中*/
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #7d7d7d;
    border-radius: 4px;
    color: #7d7d7d;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 20px;
}

0

评论区