Saturday, July 1, 2017

How to write down the element Selector?

All <p> elements on a page like this (in this case, all <p> elements will be center-aligned, with a red text color):

Example

p {
    text-align: center;
    color: red;
}