以下是链接:http://www.whiterootmedia.com/homepage_layout_test/
以下是代码:
<div class="site" style="background:yellow;min-width: 577px; ">
<div class="banner" style="background:blue; height:100px; width:417px; float:left;">Banner Banner Banner Banner Banner </div>
<div class="ads" style="background:green; height:800px; width:160px; float:right;">Ads Ads Ads Ads Ads Ads Ads Ads Ads </div>
<div class="tree" style="background:orange; white-space:nowrap; height:400px; width:auto; min-width:417px; clear:left;">Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree Tree </div>
</div>
我希望当缩小窗口时,橙色div内容不会落后于绿色div,我希望橙色div文本将绿色div推离屏幕。
尘埃
答案 0 :(得分:0)
使用css属性“z-index”。
例如:
.onTop {
z-index: 1;
}
.onBottom {
z-index: 0;
}
数字越大,元素越“顶部”。
答案 1 :(得分:0)
答案 2 :(得分:0)
您有几个选择:
但是,如果你保留“white-space:nowrap”,并且那行“Tree”文本不合适,它必须去某个地方......你的选择落后于,或者被砍掉溢出:隐藏。
如果我错过了你的目标,请告诉我。