1.The id Attribute
To define a specific style for one special element, add an id attribute to the element:
<p id="p01">I am different</p>
Example
#p01 {
color: blue;}
2.CSS Margin
The CSS margin property defines a margin (space) outside the border:
Example
p {
border: 1px
solid powderblue;
margin: 50px;
}