请问有没有办法可以去掉这个滚动条的?
测试.box {
height: 14px;
width: 100%;
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
}
ul{
height: 14px;
width: 500px;
padding: 0;
margin: 0;
}
.f{
padding: 0;
margin: 0;
float: left;
height: 14px;
font-size: 12px;
line-height: 14px;
width: 100px;
}
- 你的名字
- 你的名字
- 你的名字
- 你的名字
- 你的名字
采纳后改写的最后完整的代码:
测试body,
html,
ul,
li {
padding: 0;
margin: 0;
}
.box {
width: 100%;
height: 30px;
overflow: hidden;
}
.wrap,.content{
height: 40px;
}
.wrap {
width: 100%;
overflow: auto;
position: relative;
overflow: auto;
overflow-y: hidden;
}
.content{
width: 500px;
}
.f{
width: 100px;
float: left;
}
- 你的名字
- 你的名字
- 你的名字
- 你的名字
- 你的名字