1. 程式人生 > >改變checkbox的樣式(選項框中加圖片)

改變checkbox的樣式(選項框中加圖片)

radi TE 20px wid 圖片 borde line url appear

input[type=‘checkbox‘] {
width: 20px;
height: 20px;
background-color: #fff;
-webkit-appearance: none;
border: 1px solid #c9c9c9;
border-radius: 2px;
outline: none;
}

.li_ipt input[type=checkbox]:checked {
background: url("img/ok.png")no-repeat center;
}

改變checkbox的樣式(選項框中加圖片)