get it on google playCreated with Sketch.
CSS> Font size

Font size

To change how big text is, we use the font-size property.

 <body>
  <p style="font-size">Avatar</p>
 </body>

We measure elements on a webpage with pixels. To specify a size, we add a number. Set the font-size of the p element to 60 pixels.

 <body>
  <p style="font-size: 60px;">Avatar</p>
 </body>
TRY IT ON THE APP