国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Set font size using % and em

Example analysis:

is the body element (parent element) sets the default font-size value in percentage, and then sets the font size of the <h1> and <p> elements (child elements) in em. This can effectively solve the problem of em in IE browser and can adjust the text size in all browsers.


Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> body {font-size:100%;} h1 {font-size:2.5em;} h2 {font-size:1.875em;} p {font-size:0.875em;} </style> </head> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <p>This is a paragraph.</p> <p>在所有瀏覽器中,可以顯示相同的文本大小,并允許所有瀏覽器縮放文本的大小。</p> </body> </html>
submitReset Code