0

homeWrapperContentRightの隣に配置できないという問題がありますhomeWrapperContentLeft。これを行うときに見逃しているアドバイスはありますか?

ライブ URL

CSS:

.homeWrapperContentLeft{
    width:628px;
    height:825px;
    clear: both;
}

.homeWrapperContentRight{
    float: right;
    width:250px;
    height:849px;
}
4

3 に答える 3

0

display: inlineあなたに追加して.homeWrapperContentLeft完了です。

于 2013-04-07T05:23:42.280 に答える
0

これを試してください(CSSに基づいて):

.homeWrapperContentLeft {
    display: inline-block;
    width:628px;
    height:825px;
}

.homeWrapperContentRight {
    display: inline-block;
    width:250px;
    height:849px;
}
于 2013-04-07T05:24:16.247 に答える
0
.homeWrapperContentLeft{
    width:628px;
    height:825px;
    clear: both;
    display: inline;
}

.homeWrapperContentRight{
    float: right;
    width:250px;
    height:849px;
    display: inline
}

これらの行を試してみましたが、Chrome で動作しました。それが役に立てば幸い!

于 2013-04-07T05:25:55.350 に答える