2310月
google浏览器chrome设置滚动条样式
SEO/网站推广, 前端开发DIV+CSS, 用户体验设计, 设计开发工具在chrome浏览器下用过google reader的都知道,鼠标放在左边导航会有一个简洁的滚动条,自己也做了一个试一下
样图
代码:
html { overflow: auto; } body { position: absolute; top: 20px; left: 20px; bottom: 20px; right: 20px; padding: 30px; overflow-y: scroll; overflow-x: hidden; } /* Let's get this party started */ ::-webkit-scrollbar { width: 12px; } /* Track */ ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); -webkit-border-radius: 6px; border-radius: 6px; } /* Handle */ ::-webkit-scrollbar-thumb { -webkit-border-radius: 6px; border-radius: 6px; background: rgba(145,145,145,0.8); -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); } ::-webkit-scrollbar-thumb:window-inactive { background: rgba(145,145,145,0.4); }
具体针对某一个div可以在 ::-webkit- 前面加上特定的名称,例如
.courrlist ::-webkit-scrollbar { width: 10px; } /* Track */ .courrlist ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); -webkit-border-radius: 6px; border-radius: 6px; } /* Handle */ .courrlist ::-webkit-scrollbar-thumb { -webkit-border-radius: 6px; border-radius: 6px; background: rgba(145,145,145,0.8); -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); } .courrlist ::-webkit-scrollbar-thumb:window-inactive { background: rgba(145,145,145,0.4); }
ps:此写法只兼容chrome浏览器
更多相关文章
No comments
星期二, 10月 23rd, 2012 | 分类:SEO/网站推广, 前端开发DIV+CSS, 用户体验设计, 设计开发工具 | RSS 2.0 | 留言/评论 | Trackback