“Selektor wejściowy CSS” Kod odpowiedzi

Selektor wejściowy CSS

input[type="text"] {
  background-color: blue;
}
Insert_Name_Here

Jak pisać CSS dla tekstu typu wejściowego

/* For Example, If we want to change css of "text" type
from <input> we do this:*/

input[type=text] {
    /* Your Code Here */ 
}
David Gomari

Target CSS według nazwy formularza

tag[name="nameofthetag"] {
	//style your html tag
}

Example: 
<input type="submit" value="Go" name="goButton">
input[name="goButton"] {
  background: red;
}
Sergiu The Man

CSS Ustaw style dla tekstu wejściowego

input[type="text"] {  font-size: 0.9em;  padding-top: 0.35rem;}
Clean Cassowary

Odpowiedzi podobne do “Selektor wejściowy CSS”

Pytania podobne do “Selektor wejściowy CSS”

Więcej pokrewnych odpowiedzi na “Selektor wejściowy CSS” w CSS

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

Przeglądaj inne języki kodu