大家好我有兩個div的辦事指南,滑塊更改格窗口的位置是在調整
<div id="topcontent">
<div id="latestnews"> Content1 </div>
<div id="slider"> content2 </div>
</div>
,我使用的是
#topcontent {
height:auto;
margin-top:15px;
overflow:hidden;
}
#latestnews {
width:32%;
float:left;
height:auto;
}
#slider {
margin:0 33%;
width:67%;
position:relative;
}
@media handheld, only screen and (max-width: 767px) {
#latestnews {
float:none;
width:100%; }
#slider {
margin:0;
width:100%; }
}
以下CSS時寬度767px內容1處達到首先再content2的地方,實際上當寬度達到767px時需要先放置content2。如何重新排列不同寬度的div。請幫幫我。
但在寬度較小的位置沒有改變,因爲我的需要 – neel
如果是這樣只是啓用保證金並保持浮動 –
沒有改變.................... – neel