溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

純css如何實(shí)現(xiàn)選框選中效果

發(fā)布時(shí)間:2020-11-10 10:25:57 來源:億速云 閱讀:562 作者:小新 欄目:web開發(fā)

小編給大家分享一下純css如何實(shí)現(xiàn)選框選中效果,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

選擇器介紹:

1、“+”:如 div + p    選擇緊接在 <div> 元素之后的所有 <p> 元素。

2、:checked :如 input:checked 單選框和復(fù)選框的選中狀態(tài)。

實(shí)現(xiàn)代碼:

<style type="text/css">
            .che-box {
            display:inline;
        }
        .che-box input{
            display: none;
        }
        .che-box label{
            display: inline-block;
            border: 1px solid #e1e1e1;
            border-radius: 4px;
            padding: 3px 5px;
        }
        .che-box input:checked + label{
            border-color: #088de8;
            background: #088de8;
            color: #fff;
        }
    </style>
 
 
<div class="che-box">
        <input type="checkbox" id="che1" />
        <label for="che1">
            標(biāo)簽1
        </label>
    </div>
    <div class="che-box">
        <input type="checkbox" id="che2" />
        <label for="che2">
            標(biāo)簽2
        </label>
    </div>

實(shí)現(xiàn)效果:

純css如何實(shí)現(xiàn)選框選中效果

這情況主要用于 type=“checkbox,radio”的input 自定義選中樣式的。

看完了這篇文章,相信你對純css如何實(shí)現(xiàn)選框選中效果有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI