您好,登錄后才能下訂單哦!
這篇文章主要介紹了css如何繪制checkbox,radio,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>復選框效果</title> <style> form{border: 1px solid #ccc;padding: 20px;width: 300px;margin: 30px auto;} .wrapper{margin-bottom: 10px;} .box{display: inline-block;position: relative;width: 20px;height: 20px;border: 2px solid orange;} .box input{position: absolute;top: 0;left: 0;top: -3px;left: -4px;width: 21px;height: 21px; opacity: 0;cursor: pointer;z-index: 5; } .box span{position: absolute;top: 1px; right: 6px;font-size: 19px;font-weight: bold;font-family: Arial; -webkit-transform: rotate(18deg); -moz-transform: rotate(18deg); -ms-transform: rotate(18deg); -o-transform: rotate(18deg); transform: rotate(18deg);color: orange;} input[type="checkbox"]+span{opacity: 0;} input[type="checkbox"]:checked+span{opacity: 1;} </style> </head> <body> <form action="#"> <div> <div> <input type="checkbox" checked id="userName" /><span>√</span> </div> <label for="userName">我是選中狀態</label> </div> <div> <div> <input type="checkbox" id="userNum" /><span>√</span> </div> <label for="userNum">我是未選中狀態</label> </div> </form> </body> </html>
感謝你能夠認真閱讀完這篇文章,希望小編分享的“css如何繪制checkbox,radio”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。