exercise.md 331 字节
Newer Older
王天雷 已提交
1
# 隐藏页面滚动条
王天雷 已提交
2 3 4 5 6

下列有关隐藏当前页面滚动条方法正确的是

## 答案

m0_65861709's avatar
update  
m0_65861709 已提交
7
在pages.json中配置"mp-weixin":{"scrollIndicator":"none"}
王天雷 已提交
8 9 10 11 12

## 选项

### A

m0_65861709's avatar
update  
m0_65861709 已提交
13
::scrollbar {
王天雷 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27
width: 0;
height: 0;
background-color: transparent;
}

### B

overflow-y:hidden;

### C

在pages.json中配置"app-plus":{"bounce":"none"}