overflow-x: hidden;滑动css
时间: 2024-06-13 20:09:44 浏览: 188
使用overflow: hidden来禁用页面滚动条
5星 · 资源好评率100%
overflow-x: hidden;是CSS属性,用于控制元素在水平方向上的溢出内容的显示方式。当元素的内容超出其指定的宽度时,overflow-x: hidden;将隐藏水平方向上的溢出内容,而不是允许用户在水平方向上滚动。这个属性通常用于防止水平滚动条出现,从而使页面更加美观。
以下是一个演示overflow-x: hidden;的例子:
```html
<!DOCTYPE html>
<html>
<head>
<title>Overflow-x: Hidden Demo</title>
<style>
body {
height: 100%;
overflow-x: hidden;
width: 100%;
position: fixed;
}
.container {
width: 120%;
height: 100%;
background-color: #ccc;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.box {
width: 300px;
height: 300px;
background-color: #fff;
margin: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: bold;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
</style>
</head>
<body>
<div class="container">
<div class="box">1</div>
<div class="box">2</div>
<div class="box">3</div>
<div class="box">4</div>
<div class="box">5</div>
<div class="box">6</div>
<div class="box">7</div>
<div class="box">8</div>
<div class="box">9</div>
<div class="box">10</div>
</div>
</body>
</html>
```
在这个例子中,我们使用了overflow-x: hidden;属性来防止.container元素的内容在水平方向上溢出。当我们在浏览器中查看这个页面时,我们会发现虽然.container元素的宽度设置为120%,但是我们无法通过水平滚动条来查看溢出的内容,因为overflow-x: hidden;属性将其隐藏了。
阅读全文