CSS:实现移动端滚动导航效果
在手机web app开发中会涉及到水平导航,代码如下:
.nav_dh {
box-sizing: border-box;
width: 100%;
overflow-y: auto;
height: 2.5rem;
line-height: 2.5rem;
background-color:#fff;
position: fixed;
z-index: 999;
top: 44px;
max-width: 640px;
min-width: 320px;}