0
A
回答
0
看看這種變化有助於: http://jsfiddle.net/panchroma/RLSkL/
重要的位是我翻的,然後使用CSS HTML中的兩個div的順序來管理佈局
CSS
/* pull the first div to the right and the second to the left for desktop views */
#loginContent{
width:330px;
float:right;
}
#attensions{
width:330px;
float:left;
}
.LgnBtn{
clear:both;
}
/* for tablets and smartphones, remove the floats above */
@media (max-width: 790px){
#loginContent{
width:100%;
float:inherit;
}
#attensions{
width:100%
float:inherit;
}
}
希望這有助於!
0
在<div>
使用float:left
你想在最前面。
0
唯一的方法就是在您的html代碼中向上移動#loginContent,另一方面您可以使用絕對位置來設置自己的位置。對於考試:
#attensions{
position: absolute;
top: 180px;
}
#loginContent{
position: absolute;
top: 0;
}
相關問題
- 1. 相對定位與響應式設計
- 2. 響應式設計,設備高度
- 3. 響應式設計突破點錯位
- 4. 響應式設計和位置:絕對
- 5. Windows通用響應式設計復位
- 6. 響應式網頁 - 高度設計
- 7. Google Swiffy和響應式設計,高度
- 8. 響應式網頁設計,html寬度
- 9. 響應式設計
- 10. 具有設定高度的響應式圖像設計
- 11. 定位跨度?
- 12. 絕對定位李的高度不工作的響應式設計
- 13. 爲靈敏度高的容器設計響應式設計
- 14. 固定標題與響應式設計
- 15. 響應式設計中絕對定位的元素
- 16. CSS絕對定位和響應式設計
- 17. 響應式設計問題中的絕對定位元素
- 18. Div在響應式網頁設計中的重新定位
- 19. CSS:在響應式設計中的絕對定位
- 20. 絕對定位的元素和響應式設計
- 21. 響應式設計中的絕對定位圖像
- 22. 響應式設計 - 位置固定和全屏圖像
- 23. 響應式設計中的固定位置
- 24. 如何在響應式設計中定義高度
- 25. 如何防止跨度進入下一行 - 響應式網頁設計?
- 26. HTML5響應式設計
- 27. 響應式設計混亂
- 28. 響應式設計錯誤
- 29. 響應式設計框架
- 30. Android響應式設計鈦
我試過了,沒有收穫: – Vovin
你能用你的代碼創建一個jsfiddle嗎? – eclipsis
http://jsfiddle.net/parissa/aUJPm/當您調整大小時,有兩個跨度#attensions和#loginContent #attensions位於頂部我需要#loginContent位於頂部 – Vovin