为了账号安全,请及时绑定邮箱和手机立即绑定

移动端使用overflow-y: auto; 可以滚动,但是没有出现滚动条,怎么让其显示?

移动端使用overflow-y: auto; 可以滚动,但是没有出现滚动条,怎么让其显示?

慕侠2389804 2018-08-10 16:10:04
我不管,我要滚动条!!!!
查看完整描述

1 回答

?
BIG阳

TA贡献1859条经验 获得超6个赞

可以使用css,让滚动条显示出来。
代码如下:

 .rows {

  height: 230px;

  overflow: hidden;

  overflow-y: auto;

}

.rows::-webkit-scrollbar-track-piece {

  background-color: rgba(0, 0, 0, 0);

  border-left: 1px solid rgba(0, 0, 0, 0);

}

.rows::-webkit-scrollbar {

  width: 5px;

  height: 13px;

  -webkit-border-radius: 5px;

  -moz-border-radius: 5px;

  border-radius: 5px;

}

.rows::-webkit-scrollbar-thumb {

  background-color: rgba(0, 0, 0, 0.5);

  background-clip: padding-box;

  -webkit-border-radius: 5px;

  -moz-border-radius: 5px;

  border-radius: 5px;

  min-height: 28px;

}

.rows::-webkit-scrollbar-thumb:hover {

  background-color: rgba(0, 0, 0, 0.5);

  -webkit-border-radius: 5px;

  -moz-border-radius: 5px;

  border-radius: 5px;

}


查看完整回答
反对 回复 2018-09-21
  • 1 回答
  • 0 关注
  • 8758 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信