Standard HTML tag for defining paragraphs.

The following illustrations show:

  1. The p style before applying CSS changes.

  2. The p style after the font-size property has been changed to 24px.

Default CSSModified CSS


p {
margin-bottom: 15px;
font-size: 14px;
line-height:150%;
}


p {
margin-bottom: 15px;
font-size: 24px;
line-height:150%;
}