所以我用这个 CSS 设置了一个 div 表,如下所示,使其居中并固定在页面顶部。我可以设置另一个 div 并将其居中,但我无法让 DIV 低于顶部。有什么建议吗?
这是顶部 DIV 的 css:
.fixedtop
{
position: fixed;
top: 0px;
left: 50%;
margin: 0 0 0 -400px;
background-image: url(bannerlogo.jpg);
width:800px;
height: 414;
}
这是我测试过的最新 css:
.fixedcenter
{
position:center;
margin-top: 414px;
width:800px;
height: 414px;
}
我还尝试使用填充和弄乱边距来居中。非常感谢所有帮助。