我是新來的HTML和CSS,我正在一個項目,我想使用自定義複選框。 我想通過css隱藏一個帶有圖像的複選框。我不想重寫html,如果我不必。我已經使用(display:none;)覆蓋了複選框,但是這也禁用了我的複選框。有沒有辦法讓我的複選框可用而不顯示?隱藏複選框與CSS
input[type='checkbox']
{
display: none;
}
input[type='checkbox'] + label
{
background: url('/Pictures/checkbox_unchecked.jpg')no-repeat;
height: 30px;
width: 30px;
background-size: 100%;
display:inline-block;
padding: 0 0 0 0px;
}
input[type='checkbox']:checked + label
{
background: url('Pictures/checkbox_checked.jpg') no-repeat;
height: 50px;
width: 200px;
background-size: 100%;
display:inline-block;
padding: 0 0 0 0px;
}
使它透明與不透明':0' –