“Zestaw rozmiar pola wyboru” Kod odpowiedzi

Pole wyboru rozmiar CSS

input[type=checkbox] {
    transform: scale(1.5);
}
Annoyed Alpaca

Zestaw rozmiar pola wyboru

/* https://developer.mozilla.org/en-US/docs/Web/CSS/zoom */

input[type=checkbox] {
	zoom: 2;
}
Grumpy Grebe

CSS Procent Scale pole wyboru

// to scale checkboxes with the rest of the page use this:
//Note, use width percent, height auto and the scale command inside another div as a ref
<div style="width:100%; height:auto;">
	<input type="checkbox" style="width:20%; height:auto; transform: scale(2.5);">
</div>
Poised Penguin

Odpowiedzi podobne do “Zestaw rozmiar pola wyboru”

Pytania podobne do “Zestaw rozmiar pola wyboru”

Więcej pokrewnych odpowiedzi na “Zestaw rozmiar pola wyboru” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu