ここで見ることができる非常に単純な Web ページ レイアウトを作成しました: http://s361608839.websitehome.co.uk/greengold/www/index.html ご覧のとおり、問題があるようです。div #rightcol は、左側の上部 div (#leftcolbanner) によってページの下に押し下げられているようです。
#leftcolbanner の CSS は次のとおりです。
#leftcolbanner{
width: 707px;
height: 266px;
float: left;
background: url(../images/banner_home.gif) no-repeat;
margin: 20px 0 20px 20px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #e1dbce;
}
および #rightcol:
#rightcol{
width: 190px;
background: #f4f2ec url(../images/bg_rightcol.gif) no-repeat right bottom;
float: right;
min-height: 550px;
padding: 25px;
-moz-border-radius-topleft: 0px;
-moz-border-radius-topright: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 0px;
-webkit-border-radius: 0px 5px 5px 0px;
border-radius: 0px 5px 5px 0px;
border-left: 1px solid #e1dbce;
}
#leftcolbanner の幅は、#rightcol が押し下げられている理由ではありません。私の経験では、これが唯一の原因のように思えますが、今回はそうではありませんでした。
これを引き起こしている私が見ることができない何かを見ることができますか?
どうもありがとう