Font size changes - HTML CSS CSS Property

HTML CSS examples for CSS Property:font-size

Description

Font size changes

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
body {<!--from   w ww .ja  v  a 2s  .c o m-->
   font-size:63.6%;
}

div {
   font-size:2.3em;
}
</style> 
 </head> 
 <body> 
  <div>
    Lorem ipsum d 
  </div>  
 </body>
</html>

Related Tutorials