设置css文件中text样式
首先打开操作软件这里用DW编辑工具:取一个css名字为text;
<!DOCTYPE html><html>
<head>
<meta charset="gb2312" />
<title>效果区</title>
</head>
<body>
<style>
.text{ width:200px height:200px background:#09C color:#FFF font-size:18px font-weight:bold text-indent:2em text-align:left}
</style>
<div class="text">
文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域文字区域
</div>
</body>
</html>
实现效果图如下:
详解:设置一个css样式取名:text,定义一个宽度与高度分别为200px。
其次设置一个背景颜色background:#09C
字体颜色为白色 color:#FFF
字体的大小为18xp:font-size:18px
设置字体为粗体:font-weight:bold
字体靠左对齐:text-align:left
字体首行缩进2个文字(2em):text-indent:2em
用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>
可以给标签家个id或class就可以调整文本框的宽和高。
如:
<style type="text/css">
.text1{width:100pxheight:20px}
</style>
<input type="text" class="text1" />
扩展资料:
在CSS中,使用text-align属性控制文本的水平方向的对齐方式:左对齐、居中对齐、右对齐。
该属性通过指定行框与哪个点对齐,从而设置块级元素内文本的水平对齐方式。通过允许用户代理调整行内容中字母和字之间的间隔,可以支持值 justify;不同用户代理可能会得到不同的结果。
默认值:left if direction is ltr, and right if direction is rtl
继承:yes
版本:CSS1
JavaScript 语法:object.style.textAlign="right"
参考资料来源:百度百科-text-align