css样式 div居中 怎样写
css样式表内容
body
{
margin: 0px auto;
padding: 0px;
text-align: center;
}
#main
{
background-color: #E6F3F9;
width:1000px;
height:800px;
text-align:center;
}
html内容
<body >
<form id="form1" runat="server">
<div id="main">
</div>
</form>
</body>
css样式表已经引用,这样写不对么?为什么div不能居中呢?
答案:把
#main
{
background-color: #E6F3F9;
width:1000px;
height:800px;
text-align:center;
}
改成这个样式
#main
{
background-color: #E6F3F9;
margin:0 auto;
padding:0;
width:1000px;
height:800px;
text-align:center;
}
上一个:css里除了div,还有什么要学?
下一个:如何用cookie 保存 js选择的参数?看下面的js,这是个css样式切换js效果,怎样用cookies保存选择了的效果