层模型--固定定位
怎么让div1居中呢?margin:0 autor;不行啊
怎么让div1居中呢?margin:0 autor;不行啊
2016-04-17
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>relative样式</title>
<style type="text/css">
#div1{
width:200px;
height:200px;
line-height:200px;
border:2px red solid;
margin:20px auto;
background:#ccc;
//position:fixed;
//bottom:0;
//right:0;
}
</style>
</head>
<body>
<div id="div1"></div>
<p>文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本。</p>
</body>
</html>
举报