Q
CSS水平滾動
31
A
回答
83
您可以使用display:inline-block
與white-space:nowrap
。像這樣寫:
.scrolls {
overflow-x: scroll;
overflow-y: hidden;
height: 80px;
white-space:nowrap
}
.imageDiv img {
box-shadow: 1px 1px 10px #999;
margin: 2px;
max-height: 50px;
cursor: pointer;
display:inline-block;
*display:inline;/* For IE7*/
*zoom:1;/* For IE7*/
vertical-align:top;
}
3
這裏檢查這個環節 我改變顯示:inline-block的 http://cssdesk.com/gUGBH
+0
儘管這個鏈接可能回答這個問題,但最好在這裏包含答案的重要部分,並提供供參考的鏈接。如果鏈接頁面更改,則僅鏈接答案可能會失效。 – 2014-05-26 08:09:03
0
使用此代碼來生成水平滾動塊內容。我從這裏得到這個http://www.htmlexplorer.com/2014/02/horizontal-scrolling-webpage-content.html
<html>
<title>HTMLExplorer Demo: Horizontal Scrolling Content</title>
<head>
<style type="text/css">
#outer_wrapper {
overflow: scroll;
width:100%;
}
#outer_wrapper #inner_wrapper {
width:6000px; /* If you have more elements, increase the width accordingly */
}
#outer_wrapper #inner_wrapper div.box { /* Define the properties of inner block */
width: 250px;
height:300px;
float: left;
margin: 0 4px 0 0;
border:1px grey solid;
}
</style>
</head>
<body>
<div id="outer_wrapper">
<div id="inner_wrapper">
<div class="box">
<!-- Add desired content here -->
HTMLExplorer.com - Explores HTML, CSS, Jquery, XML, PHP, JSON, Javascript
</div>
<div class="box">
<!-- Add desired content here -->
HTMLExplorer.com - Explores HTML, CSS, Jquery, XML, PHP, JSON, Javascript
</div>
<div class="box">
<!-- Add desired content here -->
HTMLExplorer.com - Explores HTML, CSS, Jquery, XML, PHP, JSON, Javascript
</div>
<div class="box">
<!-- Add desired content here -->
HTMLExplorer.com - Explores HTML, CSS, Jquery, XML, PHP, JSON, Javascript
</div>
<div class="box">
<!-- Add desired content here -->
HTMLExplorer.com - Explores HTML, CSS, Jquery, XML, PHP, JSON, Javascript
</div>
<div class="box">
<!-- Add desired content here -->
HTMLExplorer.com - Explores HTML, CSS, Jquery, XML, PHP, JSON, Javascript
</div>
<!-- more boxes here -->
</div>
</div>
</body>
</html>
0
嘗試使用表結構,它更加兼容。 檢查了這一點Horizontal Scrolling using Tables
相關問題
- 1. 水平滾動css?
- 2. CSS水平滾動(簡單)
- 3. jQuery + CSS |水平滾動
- 4. CSS水平列表滾動?
- 5. CSS水平DIV滾動
- 6. CSS水平滾動查詢
- 7. 水平滾動條CSS
- 8. CSS水平滾動技巧
- 9. CSS水平滾動框
- 10. HTML CSS水平滾動
- 11. css水平滾動表格
- 12. 浮動水平滾動的DIV + CSS
- 13. 浮動水平的div而水平滾動 - CSS/jQuery的
- 14. 水平滾動
- 15. 水平滾動?
- 16. 水平滾動
- 17. 水平滾動
- 18. 水平滾動
- 19. 水平滾動+滾動條
- 20. html + css:水平滾動通道?
- 21. 水平滾動溢出圖像 - HTML/CSS
- 22. CSS無法創建水平滾動條
- 23. 水平滾動的CSS背景
- 24. 固定div水平滾動css
- 25. CSS溢出和水平滾動條
- 26. CSS - 水平滾動不起作用
- 27. css使網站水平滾動
- 28. CSS - 僅使用水平滾動條
- 29. CSS滾動水平的跨瀏覽器
- 30. 擺脫水平滾動條CSS
這工作真的很好 - 感謝 – 2012-03-29 13:12:40
@sandeep plz幫助我出去,我用烏爾CSS這是的jsfiddle並通過該按鈕是在頁腳現在怎麼存儲AJAX呼喚動態假設一些數據R卡明我可以滾動該按鈕而不是窗口頁面只頁腳 – 2013-07-18 07:32:32
如何還通過抓取圖像並拖動左/右來支持滾動? – 2015-11-10 17:03:02