Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Aviance School is one of the largest web solutions platform in India for developers to learn and share their programming knowledge and build their careers.
A CSS rule-set consists of a selector and it’s declaration block.
In the following example all <p> elements will be center-aligned, with a red text black:
Here <p> is a selector and {color: #000; text-align: center;} is declaration block.
p {
color: #000;
text-align: center;
}