Some of the basic rules of CSS and also a learning and reviewing Records of CSS.
Selectors
id selectors(one container)
1 2 3 4
| #name { color:green; } <p id="name"></p>
|
class selectors(multiple container)
1 2 3 4
| .name { color: blue; } <p class="name"></p>
|
Author: o_oyao
License: All articles in this blog are licensed under
CC BY-NC-SA 4.0 unless stating additionally.