我要在ASPX文件中将一个大DIV水平居中,我使用以下代码:
<body bgcolor="#33CC33">
<form id="form1" runat="server">
<center>
<div style="height:580px; width: 890px; top:0px; bottom:0px; background-color: #FFFFFF;">
</div>
</center>
它定位正确,唯一的问题是屏幕顶部和我的DIV顶边之间有一个小间隙(大约10个像素),但我希望我的DIV从浏览器屏幕的顶部边缘开始,问题是什么?
感谢
答案 0 :(得分:0)
尝试重置body和div的所有边距和填充,这应该可以解决问题。
此外,删除<center>
标记,它已经被推迟了。真的,使用css进行定位。
答案 1 :(得分:0)
尝试以下方法:
<body style="background-color:#33CC33; margin:0px">
<div style="margin:0 auto; width:890px; background-color:#FFF">
<form id="form1" runat="server">
Page Content
</form>
</div>
</body>
取值