Wordpress テーマの CSS を編集しています (twentyten)
これは私のHTML構造です:
<body>
<div id="wrapper">
<div id="header"></div>
<div id="main">
<div id="filtri_di_ricerca"><img></div>
<div id="container">
<div id="content"></div>
</div>
</div>
<div id="footer"></div>
</div>
</body>
これは私のCSSです:
#main {
position:relative;
background:#fff;
overflow:visible;
}
#filtri_di_ricerca img {
position: absolute;
top: -96px
}
#filtri_di_ricerca {
position: absolute;
top: 0;
right: 20px;
width: 250px;
background-color: #E6E6E6;
}
#main
div を divに重ねる必要がありますが、折りたたみをゼロ#filtri_di_ricerca
に設定overflow:visible
すると#main his height
... まだ見ることができますが、 の背景は見えなくなります...代わりに の背景が表示されます。#container
#content
#main
#body