Rose debug info
---------------

Простая стилизация checkbox, radio через псевдокласс :checked

Простым способом стилизовать checkbox, radio можно через псевдокласс :checked

input[type="checkbox"] {
   width: 25px;
    height: 25px;
    background: #030514;
    border: #1e2132 1px solid;
    border-radius: 2px;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="checkbox"]:checked {
    background: #030514 url(../img/check.webp) no-repeat center;
}
Поделиться
Отправить
 10   1 мес   css   html