我在div中放置了內部div,我需要使所有內部div都行,並且應該顯示水平滾動條(我知道這聽起來很瘋狂,但我需要)。我試過容器寬度自動和溢出滾動,但沒有。如何在頁面上進行水平滾動
如何做到這一點?
我的標記:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>text-overflow</title>
<style>
body{
width: auto;
}
#items{
overflow-x: scroll;
width: auto;
}
.item{
display: inline-block;
width: 400px;
height: 100px;
border:1px solid;
}
</style>
</head>
<body>
<div id="items">
<div class="item">
Item content
</div>
<div class="item">
Item content
</div>
<div class="item">
Item content
</div>
<div class="item">
Item content
</div>
<div class="item">
Item content
</div>
<div class="item">
Item content
</div>
</div>
</body>
</html>
非常感謝你。 – testCoder
不客氣。 –