<html>
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312">
<title>页面滚动条颜色设置隐藏技巧说明-网页特效观止-网页特效代码|JsCode.CN|</title>
</head>
<body>
<p>1.overflow内容溢出时的设置(设定被设定对象是否显示滚动条)<br>
overflow-x水平方向内容溢出时的设置<br>
overflow-y垂直方向内容溢出时的设置<br>
以上三个属性设置的值为visible(默认值)、scroll、hidden、auto。<br>
<br>
2.scrollbar-3d-light-color立体滚动条亮边的颜色(设置滚动条的颜色)<br>
scrollbar-arrow-color上下按钮上三角箭头的颜色<br>
scrollbar-base-color滚动条的基本颜色<br>
scrollbar-dark-shadow-color立体滚动条强阴影的颜色<br>
scrollbar-face-color立体滚动条凸出部分的颜色<br>
scrollbar-highlight-color滚动条空白部分的颜色<br>
scrollbar-shadow-color立体滚动条阴影的颜色<br>
<br>
我们通过几个实例来讲解上述的样式属性:<br>
1.让浏览器窗口永远都不出现滚动条<br>
没有水平滚动条<br>
<body style="overflow-x:hidden"><br>
没有垂直滚动条<br>
<body style="overflow-y:hidden"><br>
没有滚动条<br>
<body style="overflow-x:hiddenoverflow-y:hidden">或<body <br>
style="overflow:hidden"><br>
<br>
2.设定多行文本框的滚动条<br>
<br>
没有水平滚动条<br>
<textarea style="overflow-x:hidden"></textarea><br>
<br>
没有垂直滚动条<br>
<textarea style="overflow-y:hidden"></textarea><br>
<br>
没有滚动条<br>
<textarea style="overflow-x:hiddenoverflow-y:hidden"></textarea><br>
或<textarea style="overflow:hidden"></textarea><br>
<br>
3.设定窗口滚动条的颜色<br>
设置窗口滚动条的颜色为红色<body style="scrollbar-base-color:red"><br>
scrollbar-base-color设定的是基本色,一般情况下只需要设置这一个属性就可以达到改变滚动条颜色的目的。<br>
加上一点特别的效果:<br>
<body style="scrollbar-arrow-color:yellowscrollbar-base-color:lightsalmon"><br>
<br>
4.在样式表文件中定义好一个类,调用样式表。<br>
<style><br>
.coolscrollbar{scrollbar-arrow-color:yellowscrollbar-base-color:lightsalmon}<br>
</style><br>
这样调用:<br>
<textarea class="coolscrollbar"></textarea></p>
</body>
</html>
<div class="wrapper"><div class="top"></div>
<div class="left"></div>
<div class="right"></div>
<div class="footer"></div>
</div>
Footer那个DIV的css
left: 0pxbottom: 0pxposition: fixed
就可以实现你想要的效果
请使用sharepoint designer 2007以上版本制作网页,2003暂时不支持。用它打开一个网页,新建的也可以。右侧有工具箱,打开HTML\表单控件\文件夹,双击文本区三个字,然后插入的文本区双击设置大小、初始值、链接到的值。
再插入一个输入(按钮),放在旁边,再设置,就OK了。
sharepoint designer 2007代码:
<!--webbot bot="Validation" B-Value-Required="TRUE" I-Minimum-Length="1" -->
<textarea name="TextArea1" style="width: 342pxheight: 142px">欢迎光临,有什么想对我说的吗?</textarea><input name="Button1" type="submit" value="现在提交" style="width: 77pxheight: 38px" /></form>
</body>
</html>
**************************************************到这里止。
记住,空格、空行也要复制上!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)