我创建了一个网站,我对垂直居中有疑问。我的显示器没问题,但是在更高的分辨率下,表格保留在顶行,图像减少,表格输出。如何把事情放在一起?
.body {
background-position: center center;
height: 100%;
width: 100%;
background-color: #000000; }
#tabela {
background-attachment: fixed;
background-image:url(images/zid3.gif);
background-repeat: no-repeat;
background-position:center center;
width: 950px;
height: 800px;
cellpadding:5;
cellspacing:0;
margin:0 auto; }
提前致谢
答案 0 :(得分:0)
我认为你应该为你的所有元素设置position:absolute;
,或者使用JavaScript来使分辨率更小/更大,或者改变窗口大小。