🚨 Time is Running Out: Reserve Your Spot in the Lucky Draw & Claim Rewards! START NOW

Code has been added to clipboard!

The CSS Font-Size Property

Reading time 1 min
Published Aug 10, 2017
Updated Oct 10, 2019

Defining CSS font sizes

The CSS font-size property allows you to set the default font size in HTML documents or elements:

Example
h1{
  font-size: 250%;
}   
h2{
  font-size: 200%;
}   
p{  
  font-size: 100%;
}

The default value is medium, which equals to 16 pixels. Descendants of the element with a CSS font size defined will inherit it unless they have their font size defined individually.

Writing font-size: CSS syntax

To set a CSS font size, follow the syntax example below:

font-size: value;

All the available property values will be defined in the following section.

DataCamp
Pros
  • Easy to use with a learn-by-doing approach
  • Offers quality content
  • Gamified in-browser coding experience
  • The price matches the quality
  • Suitable for learners ranging from beginner to advanced
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
Udemy
Pros
  • Easy to navigate
  • No technical issues
  • Seems to care about its users
Main Features
  • Huge variety of courses
  • 30-day refund policy
  • Free certificates of completion

Property values

Value Definition
Keywords Define the CSS font size as xx-small, x-small, small, medium, large, x-large or xx-large
Numeric values Define the CSS font size in absolute values (e.g., pixels or millimeters)
Percentages Define the CSS font size in relation to the font size of the parent container in percentages
Relative values Define the CSS font size as larger or smaller in relation to the font size of the parent container

Browser support

Browser image
Chrome
1+
Browser image
Edge
12+
Browser image
Firefox
1+
Browser image
IE
5.5+
Browser image
Opera
7+
Browser image
Safari
1+

Mobile browser support

Browser image
Chrome
18+
Browser image
Firefox
4+
Browser image
Opera
10.1+
Browser image
Safari
1+