我猜你.wrapper
正在採取100%的寬度或瀏覽器screen.and .main
或.extend
爲您創造問題,幷包含在.container.so這就是爲什麼我編輯.container
below.if IYS讓你的容器像下面
.container{
overflow:hidden;//very importantant to fulfill your criteria
width:500px;//i gues you want have a fixed width of your container
margin:3px;//if you want to
word-break:break-all;//if you use fixed width for your container,because you are writing text with width 100% inside the container
}
編輯:根據您的編輯,如果你想下面add.extend。主要在你的div會
<div class="container">
<div class="main"></dive>
<div class="extended"> </div>
</div>
現在你的CSS應該是:
.main {
width: 100%;
//doont use height it will take automatic height
}
.extended {
background: green;
width: 150px;
float: left;
height: 100%;
margin-top:40px;//create distance from main here,its better option
}
這裏有什麼你的目標?從示例/代碼中不太清楚 – CodingIntrigue
你有兩個彼此相鄰的div ...你是否要超越? – Brewal
你能多解釋一下嗎? –