久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長(zhǎng)資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      使用css樣式制作單選框

      使用css樣式制作單選框

      我們直接來(lái)看一下具體的實(shí)現(xiàn)代碼:

      (如果您想學(xué)習(xí)css,那么這里向您推薦css視頻教程)

      <!DOCTYPE html> <html>  <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Document</title>     <link rel="stylesheet" href="./reset.css">     <style>         .radio-diy .radiocircle {             width: 12px;             height: 12px;             border: 1px solid #999;             border-radius: 50%;             cursor: pointer;             display: inline-block;         }                  .radio-diy input:checked+span {             border: 1px solid#008c8c;         }          .radio-diy input:checked~span {             color: #008c8c;         }          .radio-diy input:checked+span.radiocircle::after {             content: "";             display: block;             width: 6px;             height: 6px;             background: #008c8c;             border-radius: 50%;             cursor: pointer;             margin-left: 3px;             margin-top: 3px;         }            input[type="radio"] {             display: none;         }     </style> </head>  <body>     請(qǐng)選擇性別:     <label>         <input type="radio" name="gender" value="male">         <span></span>         <span>男</span>     </label>     <label>         <input type="radio" name="gender" value="female">         <span></span>         <span>女</span>     </label> </body>  </html>  radio.css

      效果展示:

      使用css樣式制作單選框

      推薦教程:css快速入門

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)