html – 如何使用CSS将两列居中?

前端之家收集整理的这篇文章主要介绍了html – 如何使用CSS将两列居中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我试图在我的网站上设置两列,但存在一些问题.每次更改的结果都是左侧位置(见picture).我究竟做错了什么?这是我的CSS:

body {
    background - image: url("../img/gray.png");
}

#header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #cc0000;
    text - align: center;
}

#wrapper {
    margin: 100px;
    width: 1280px;
}

#leftcolumn {
    float: left;
    background - image: url("../img/gray.png");
    margin: 10px 0px 10px 0px;
    padding: 10px;
    height: 682px;
    width: 460px;
}

#rightcolumn {
    float: left;
    color: #333;
    border: 1px solid # ccc;
    background: #F2F2E6;
    margin: 10px 0px 10px 0px;
    padding: 10px;
    height: 500px;
    width: 439px;
    display: inline;
    position: relative;
}

谢谢

最佳答案
由于两列的宽度小于包装器的宽度(即959px对1280px),因此您需要将两列放在固定宽度的容器中:

然后做一些像:

#column_container {
    width: 959px;
    margin: 0 auto;
}
原文链接:https://www.f2er.com/css/427521.html

猜你在找的CSS相关文章