A good developer can be recognized not only by their skills but also by the readability of their code.
What does it mean for code to be readable? For now, it's enough to watch your indentation in HTML and CSS. Each CSS rule should be structured the same way:
1h1 {
2 color: red;
3}
4p {
5 color: blue;
6}How to create a CSS rule:
property: value;. Remember the space after the colon and semicolon at the end.In the example above, we set the color red for the heading and paragraph. But what if the red color should be applied to many elements?
The answer is simple - you can list selectors one after another and separate them with commas:
1h1, p {
2 color: blue;
3}The blue color will be applied to h1 and p elements.