em单位_html长度单位EM

em单位_html长度单位EM

使用百分数,百分迩来机关div的宽度与高度本事。DIV的宽度以百分比%值来作为组织的宽、高的值。

实际实例注明:

1、设定页面的布景、笔墨、边框等

2、对一个DIV(父级)配置静止宽与高

3、在此DIV放入子DIV,宽度高度使用百分值来,观测这个百分比值的运用。

代码:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>百分数</title>
<style type="text/css">
body { bac千克round:#000; font: normal 14px; margin: 0; padding: 0;}
/*设定页面的后援、翰墨、边框等*/
div{ background:#fff; width:450px; height:180px; margin:0 auto; padding:10px; border:4px solid #090;}
div .text{ width:60%; height:60%;}/*名喻为text的DIV的高度与宽度均为父DIV的60%*/
</style>

</head> <body> <div> <div class="text">此div设置装备摆设class=text ,值60%宽与高</div> </div>

</body> </html>

推荐阅读