我有一个推特布局,很好的排序..主表看起来像它,它的方式被分开......
html {
-webkit-user-select: none;
text-shadow: 2px 2px 2px #000;
color: #fff;
font-smooth: always;
padding: 0;
width: 100%;
height: 100%;
background: url("./img/main_back.jpg");
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
}
body
{
height: 100%;
width: 100%;
}
.content_wrap {
position: relative;
top: 5px;
display: inline-table;
margin-right: auto;
margin-left: auto;
width: 90%;
height: 100%;
background-color: transparent !important;
}
.left_table {
overflow: hidden;
display: table-cell;
text-align: center;
width: 50%;
height: 100%;
padding-left: 5px;
padding-bottom: 20px;
}
.right_table {
display: table-cell;
text-align: center;
width: 20%;
height: 100%;
}
html5 doc类型 标题< - 向左浮动 部分< - 浮动权利
部分< - 内容包装 部分< - left_table 除了< - right_table 页脚< - 固定位置,底部0px
标记点亮,我一直在w3c网站上查看。
不能让它居中,它偏离中心大约30到40px,任何人都有任何想法?
答案 0 :(得分:0)
我注意到你的代码中没有任何地方你的内容div实际上有一个中心......
也许你是这个意思?
body
{
height: 100%;
width: 100%;
text-align: center;
}
此外,第一条评论有一点意义。