滚动条css

来源:互联网 发布:农村淘宝官网 编辑:程序博客网 时间:2024/04/29 15:47

1.让浏览器窗口永远都不出现滚动条
没有水平滚动条
<body style="overflow-x:hidden">
没有垂直滚动条
<body style="overflow-y:hidden">
没有滚动条
<body style="overflow-x:hidden;overflow-y:hidden">或<body
style="overflow:hidden">

2.设定多行文本框的滚动条

没有水平滚动条
<textarea style="overflow-x:hidden"></textarea>

没有垂直滚动条
<textarea style="overflow-y:hidden"></textarea>

没有滚动条
<textarea style="overflow-x:hidden;overflow-y:hidden"></textarea>
或<textarea style="overflow:hidden"></textarea>

3. 设定窗口滚动条的颜色

css:


html {     scrollbar-face-color:#ab680b;     scrollbar-highlight-color:#751101;     scrollbar-3dlight-color:#ab680b;     scrollbar-darkshadow-color:#000;     scrollbar-Shadow-color:#000;     scrollbar-arrow-color:#ab680b;     scrollbar-track-color:#D6A27E; }

4.框架 设置滚动,边距

<iframe name="menu" marginwidth=0 marginheight=0  width=150 height=345 frameborder=0 scrolling=yes src="menu.html">

原创粉丝点击