大家好,我有两个 div 的最新消息,滑块
<div id="topcontent">
<div id="latestnews"> Content1 </div>
<div id="slider"> content2 </div>
</div>
我为此使用以下CSS
#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%; }
}
当宽度达到 767px 内容 1 位置然后 content2 位置时,实际上需要在宽度达到 767px 时先放置 content2。如何重新排列不同宽度的 div。请帮我。