我正在使用下一个CSS:
.table {
position:static;
width: 300px;
height: 300px;
margin-left: auto;
margin-right: auto;
left:0;
right:0;
}
显然我在他们所属的地方使用了它们。但我也在其他页面添加了一些脚本:
<script language="javascript">
var left = (screen.width/2)-(300/2);
var top = (screen.height/2)-(300/2);
window.open('page.aspx?' + window.location.href.toString().split('?')[1], 'PopUp', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=300, height=300, top=' + top + ', left=' + left);
window.open('', '_self').close();
</script>
我想要的好几个小时,都是在正确的位置,顶部和左边之间没有白线。而且我没有意识到还有什么需要做的。
随时欢迎帮助。
答案 0 :(得分:0)
你需要的只是另一种风格
html, body {
margin: 0;
padding : 0;
}