当我更改页面时,页面中间向右移动

时间:2013-03-03 14:13:24

标签: css

我创建了一个带有图片的网站,当我进入图片页面时...点击下一步,预览图片浮动到右边。在IE工作得很好,但在谷歌Chrome,Mozilla,Safari ......中间页面浮动到右边。 我尝试改变css,但没有想到。你可以帮助我吗? 提前谢谢!

我在头文件和css代码

中放入“class”类
body {
    /*background-color: none;
    border-radius: 25px;
    background-image:url('/images/gray_jean.png');*/
    background: #ffffff;
    color: #000000;
    margin:0;
    padding:0;
}

.content {
    position:relative;
    margin:0 auto;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width:100%;
    clear: both;
}

由于

2 个答案:

答案 0 :(得分:0)

position:relative;删除.content

.content {
  position:relative; // Remove this
}

试试,可能是吗?

答案 1 :(得分:0)

将您当前的代码替换为

.content {
    margin:0 auto;
    text-align: center;
    width:100%;
}