CSS | フォームパーツの指定セレクタ一覧

CSS セレクタ,CSS

CSS | フォームパーツの指定セレクタ一覧

CSSで サンプルコードの紹介です。

フォームパーツの指定セレクタ一覧

input type フォームパーツの指定セレクタまとめ、50音順です。

input[type="button"] {
	background-color:#000;
}

input[type="checkbox"] {
	background-color:#000;
}

input[type="color"] {
	background-color:#000;
}

input[type="date"] {
	background-color:#000;
}

input[type="submit"] {
	background-color:#000;
}

input[type="datetime-local"] {
	background-color:#000;
}

input[type="email"] {
	background-color:#000;
}

input[type="file"] {
	background-color:#000;
}

input[type="hidden"] {
	background-color:#000;
}

input[type="image"] {
	background-color:#000;
}

input[type="month"] {
	background-color:#000;
}

input[type="number"] {
	background-color:#000;
}

input[type="password"] {
	background-color:#000;
}

input[type="radio"] {
	background-color:#000;
}

input[type="range"] {
	background-color:#000;
}

input[type="reset"] {
	background-color:#000;
}

input[type="search"] {
	background-color:#000;
}

input[type="submit"] {
	background-color:#000;
}

input[type="tel"] {
	background-color:#000;
}

input[type="text"] {
	background-color:#000;
}

input[type="time"] {
	background-color:#000;
}

input[type="url"] {
	background-color:#000;
}

input[type="week"] {
	background-color:#000;
}

input type以外のフォームパーツの指定セレクタ一覧です。

textarea {
	background-color:#000;
}

label {
	background-color:#000;
}

button {
	background-color:#000;
}

select {
	background-color:#000;
}

fieldset {
	background-color:#000;
}

legend {
	background-color:#000;
}

CSS セレクタ,CSS

Posted by Yousuke.U