梦之都
CSS教程
,
font-size
百分比字体尺寸示例
基准容器
父亲150%
儿子50%
<!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:150%; } div#son { font-size:50%; } </style> </head> <body> <div> 基准容器 </div> <div> <div id="father"> 父亲150% </div> </div> <div> <div id="son"> 儿子50% </div> </div> </body> </html>