“Wejście pole wyboru Rozmiar CSS” Kod odpowiedzi

Rozmiar pola wyboru wejścia

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

Wejście pole wyboru Rozmiar CSS

input[type=checkbox] {
    transform: scale(1.5);
}
<label><input type="checkbox"> Test</label>
Dayanaohhnana

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

Aktualizacja Rozmiar pola wyboru CSS

input./*checkbox class name*/ {
  width: /*preferred width*/;
  height: /*preferred height*/;
}
Thoughtless Termite

Odpowiedzi podobne do “Wejście pole wyboru Rozmiar CSS”

Pytania podobne do “Wejście pole wyboru Rozmiar CSS”

Więcej pokrewnych odpowiedzi na “Wejście pole wyboru Rozmiar CSS” w CSS

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

Przeglądaj inne języki kodu