0
Q
水平滾動條丟失
A
回答
2
根據jsbin的代碼,試試這個:
.abc{
overflow-x: auto;
white-space: nowrap;
}
可以保留的這些要求「自動」或「滾動」一。
還有很多其他的房產價值,請點擊這裏:http://www.w3schools.com/cssref/pr_pos_overflow.asp
0
在你的例子中,你應該設置白色空間值nowrap在你的內部股利。
看看在html:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div class="a">
<div class="scrollviewer">
<p class="datacontainer">This is overflow-x scroll. This is overflow-x scroll.
<br/>
This is overflow-x scroll.This is overflow-x scroll.This is overflow-x scroll.This is overflow-x scroll.This is overflow-x scroll.This is overflow-x scroll.This is overflow-x scroll.This is overflow-x scroll.</p>
</div>
</div>
</body>
</html>
和CSS:
.scrollviewer{
overflow-x: scroll;
width:100%;
}
.datacontainer{
white-space: nowrap;
}
相關問題
- 1. 水平滾動條從網站丟失
- 2. 水平滾動+滾動條
- 3. 窗體窗體ListView丟失水平滾動條
- 4. 右對齊的雙列布局會丟失水平滾動條
- 5. jquery水平滾動條消失
- 6. DIV水平滾動條成爲主要水平滾動條
- 7. 滾動條的滾動條丟失
- 8. 水平滾動失敗
- 9. WebView水平滾動失敗
- 10. 水平滾動條問題
- 11. webgrid與水平滾動條?
- 12. jqGrid水平滾動條
- 13. 刪除水平滾動條
- 14. 刪除水平滾動條
- 15. 刪除水平滾動條
- 16. 水平滾動條寬度
- 17. Mootools的水平滾動條
- 18. XCode - 水平滾動條
- 19. 水平滾動條問題
- 20. ul的水平滾動條
- 21. Qt TextBrowser水平滾動條
- 22. 水平滾動條CSS
- 23. 滾動條水平DIV
- 24. 水平滾動條控制
- 25. 隱藏水平滾動條
- 26. ASP.NET GridView水平滾動條
- 27. Macvim:水平滾動條
- 28. 水平滾動條與fullpage.js
- 29. 水平響應滾動條
- 30. div的水平滾動條
請將代碼添加到這個問題。您也可以在問題中保留jsbin。將代碼添加到代碼塊中的原因是萬一jsbin鏈接將來會中斷,問題仍然可以幫助未來的用戶。 – Lexi
這是一個志願者網站。不要打電話給別人姓名,也不要期待幫助。他們基於問題的質量進行投票。看[這裏](http://stackoverflow.com/help/how-to-ask) – Lexi