梦之都
CSS教程
,
font-size
相对字体尺寸示例
基准容器
父亲larger
儿子smaller
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>CSS font-size 属性相对字体尺寸示例</title> <style type="text/css" media="all"> div { font-size:5em; } div#father { font-size:larger; } div#son { font-size:smaller; } </style> </head> <body> <div> 基准容器 </div> <div> <div id="father"> 父亲larger </div> </div> <div> <div id="son"> 儿子smaller </div> </div> </body> </html>