0

我创建了一个带有图片的网站,当我进入图片页面并...单击下一步,预览图片时,图片会向右浮动。在 IE 中运行良好,但在 Google Chrome、Mozilla、Safari 中……中间页面向右浮动。我尝试改变css但没有想到。你能帮我吗?提前致谢 !

我放在标题和css代码中的类“内容”

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;
}

谢谢

4

2 回答 2

0

从. position:relative;_.content

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

试试看,可能吗?

于 2013-03-03T14:20:50.057 回答
0

将您当前的代码替换为此,

.content {
    margin:0 auto;
    text-align: center;
    width:100%;
}
于 2013-03-09T08:38:39.933 回答