CSS selector
CSS複数選択プログラム
css複数の選択者で複数の要素を同時に選択して適用できます.
1.空白がない場合は、クラス同士がくっつく
.class1.class2{} ex)-.name1.name2
クラスプロパティにname 1とname 2を同時に設定した要素を選択します.
2.カンマがある場合
element, element, element { style properties }
cssセレクタリスト(,)一致するすべての要素を選択します.
カンマで区切られたリストを1行に配置できます.h1, h2, h3, h4, h5, h6 { font-family: helvetica; }
3.スペース連用、子として指定
.a .b .c
スタイルは、aクラス内部のbクラス内部のcクラス要素にのみ適用されます.
特定の要素の前後または内部を選択する方法はA>Bです.
親がA、次の段階のb要素だけを選択します.
pseudo-elements
In CSS, ::before
creates a pseudo-element that is the first child of the selected element. It is often used to add cosmetic content to an element with the content property. It is inline by default.
A CSS pseudo-element is a keyword added to a selector that lets you style a specific part of the selected element(s).
(他のpseudoセレクタ.)
cssセレクタnameの使用 input[name="goButton"] {
background: red;
}
<input name="goButton">
Reference
この問題について(CSS selector), 我々は、より多くの情報をここで見つけました
https://velog.io/@hqillz/CSS-selector
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
h1, h2, h3, h4, h5, h6 { font-family: helvetica; }
In CSS,
::before
creates a pseudo-element that is the first child of the selected element. It is often used to add cosmetic content to an element with the content property. It is inline by default.A CSS pseudo-element is a keyword added to a selector that lets you style a specific part of the selected element(s).
(他のpseudoセレクタ.)
cssセレクタnameの使用 input[name="goButton"] {
background: red;
}
<input name="goButton">
Reference
この問題について(CSS selector), 我々は、より多くの情報をここで見つけました
https://velog.io/@hqillz/CSS-selector
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
input[name="goButton"] {
background: red;
}
<input name="goButton">
Reference
この問題について(CSS selector), 我々は、より多くの情報をここで見つけました https://velog.io/@hqillz/CSS-selectorテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol