在HTML页面布局中,position的值有几种,默然的值是什么
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<h2>2.在HTML页面布局中,position的值有几种,默然的值是什么?</h2>
<p>static, relative, absolute, fixed(IE6, 7不支持), inherit(IE不支持)</p>
<p>任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。</p>
<p>默然的值是: static</p>
</body>
</html>