Pixels and Percentages
Let's take a look at pixel and percentage units.
We'll cover the following...
Pixels
.element {   
  width: 500px;  
}
Pixels are the most common measurement unit, which allow us to set a length in pixels. ...
 Ask