input type=radio,自定义为正常按钮样式

<style>
/* 隐藏原始的输入框 */
    input[type="radio"] {
        display: none;
    }

    /* 设定自定义按钮样式 */
    .radio-button {
        margin-right: 15px;
        margin-left: 15px;
        margin-bottom: 8px;
    }

        /* 自定义按钮的选中状态样式 */
        .radio-button .custom-radio-button {
            width: 62px;
            height: 22px;
            background-color: white;
            border: 1px solid #d2d1d1;
            float: left;
            text-align: center;
            line-height: 22px;
        }

        /* 鼠标悬停时的样式,可选 */
        .radio-button:hover .custom-radio-button {
            border-color: #555;
        }

    /* 选中状态时的样式 */
    input[type="radio"]:checked + .custom-radio-button {
        background-color: #d4f1d7;
    }

    /* 禁用状态样式,可选 */
    input[type="radio"]:disabled + .custom-radio-button {
        opacity: 0.6;
        cursor: not-allowed;
    }
</style>

<body>

 <label class="radio-button">
        <input type="radio" name="my-radio" value="1" disabled>
        <span class="custom-radio-button">radio</span>
 </label>
</body>

  • 8
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值