How to set your base font size for responsive design
Setting your base font size is an important step for responsive design. The base font size is set off of the body
tag in your css. If you are going to use either percentages or em
then you will need to set a base font size. Below is the code needed to set you base font size.
body{ font-size:16px; }