HTML CSS examples for CSS Property:font-size
Font size changes
<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>