用css设置textarea代码如下:
<textarea style="width:200pxheight:100pxborder:solid 1px #f00border-radius:20pxresize:none"></textarea>
border-radius:20px;
resize:none
1.overflow内容溢出时的设置(设定被设定对象是否显示滚动条)
overflow-x水平方向内容溢出时的设置
overflow-y垂直方向内容溢出时的设置
以上三个属性设置的值为visible(默认值)、scroll、hidden、auto。
2.scrollbar-3d-light-color立体滚动条亮边的颜色(设置滚动条的颜色)
scrollbar-arrow-color上下按钮上三角箭头的颜色
scrollbar-base-color滚动条的基本颜色
scrollbar-dark-shadow-color立体滚动条强阴影的颜色
scrollbar-face-color立体滚动条凸出部分的颜色
scrollbar-highlight-color滚动条空白部分的颜色
scrollbar-shadow-color立体滚动条阴影的颜色
我们通过几个实例来讲解上述的样式属性:
1.让浏览器窗口永远都不出现滚动条
没有水平滚动条
<body style= "overflow-x:hidden ">
没有垂直滚动条
<body style= "overflow-y:hidden ">
没有滚动条
<body style= "overflow-x:hiddenoverflow-y:hidden ">或 <body
style= "overflow:hidden ">
2.设定多行文本框的滚动条
没有水平滚动条
<textarea style= "overflow-x:hidden "></textarea>
没有垂直滚动条
<textarea style= "overflow-y:hidden "></textarea>
没有滚动条
<textarea style= "overflow-x:hiddenoverflow-y:hidden "></textarea>
或 <textarea style= "overflow:hidden "></textarea>
3.设定窗口滚动条的颜色
设置窗口滚动条的颜色为红色 <body style= "scrollbar-base-color:red ">
scrollbar-base-color设定的是基本色,一般情况下只需要设置这一个属性就可以达到改变滚动条颜色的目的。
加上一点特别的效果:
<body style= "scrollbar-arrow-color:yellowscrollbar-base-color:lightsalmon ">
4.在样式表文件中定义好一个类,调用样式表。
<style>
.coolscrollbar{scrollbar-arrow-color:yellowscrollbar-base-color:lightsalmon}
</style>
这样调用:
<textarea class= "coolscrollbar "></textarea>
有几种方法:比方说我想设置为输入的字体为scans-serif,字体大小为13像素,字体颜色为红色,就可以这样写:
第一种方法:<textarea style="font-family: sans-seriffont-size:13pxcolor:red">要输入的文字</textarea>
第二种方法:你在css中写个样式:.text1{font-family: sans-seriffont-size:13pxcolor:red}
<textarea class="text1">要输入的文字</textarea>
在html中textarea 的字体大小可以用“font-size”属性来修改,字体颜色可以用“color”来修改。
1、新建html文档,在body标签中添加textarea标签,然后在这个标签中输入一段文字:
2、为textarea标签添加“font-size”属性,属性值为字体的大小,这时文字将会变大:
3、为textarea标签设置“color”属性,属性值为颜色,这里以红色为例,此时的文字将会变成红色:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)