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 に答える