は、あなたがこのようなコードを持って考える私はこれがunderstantする方が簡単だろうと思って、コメントを読んでください:)コンテンツを展開するときにdivの下に押し込まれませんか?
<div class="container">
<div class="inner_container">
<div class="left">
This div sometimes expands to the right and pushes right div off the screen
</div>
<div class="right">
bla bla bla
</div>
</div>
<div id='bottomcontent'>
This content is below both of the divs, and when div '.right' expands down, I don't want this div pushed down as well, but have the 'right' div go under it/or just make those parts disappear and not push this div down.
</div>
</div>
を。これは、CSSです:
.container {
width: 796px;
overflow:hidden;
}
.left {
float: left;
width: 256px;
}
.inner_container{
width: 1396px;
}
.right {
float: left;
width: 796px;
}
どうもありがとうみんな、およびご質問がある場合、私はあなたに混乱するかもしれない何かを説明するために一生懸命努力します、ありがとう! :)
ありがとうございました非常にピンチョン:) – pufAmuf