[CSS Selector] Part Names
The names of each part of CSS selectors and HTML elements are as follows.
div#main { color: red;}
p.text { font-size: 20px;}
※ The red part is the 'selector'.
※ The blue part is the 'property'.
※ The purple part is the 'value'.
<a href="./">Link</a>
<div class="hoge">Text</div>
※ The red part is the 'tag name' (element name).
※ The blue part is the 'attribute'.
※ The purple part is the 'value'.
If you find any errors or copyright issues, please contact us.