css属性代码大全

合集下载

常用CSS代码大全(工作必备)

常用CSS代码大全(工作必备)

常用CSS代码大全(工作必备)用html+css可以很方便的进行网页的排版布局,但不是每一种属性或者代码我们都铭记于心,最近我把CSS中的常用代码进行了归纳总结,方便自己以后查看,同时也分享给大家,希望对你们有用。

一.文本设置1、font-size: 字号参数2、font-style: 字体格式3、font-weight: 字体粗细4、颜色属性 color:参数注意使用网页安全色二、超链接设置text-decoration: 参数主要目的是在浏览器显示文本链接时更改下划线。

参数取值范围:underline:为文字加下划线overline:为文字加上划线line-through:为文字加删除线blink:使文字闪烁none:不显示上述任何效果三、背景1、背景颜色 padding: 0px 0px 0px 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); color: rgb(61, 70, 77); font-size: 16px; border-left: 1px solid rgb(128, 128, 128); background: rgb(238, 238, 238); box-shadow: rgba(7, 17, 27, 0.05) 0px 4px 8px 0px; box-sizing: border-box; border-radius: 8px; font-family: "Helvetica Neue", Helvetica, "PingFang SC", 微软雅黑, Tahoma, Arial, sans-serif;">2、背景图片background-image: url(URL)URL就是背景图片的存放路径,none表示无。

3、背景图片重复 background-repeat: 参数参数取值范围:no-repeat:不重复平铺背景图片repeat-x:使图片只在水平方向上平铺repeat-y:使图片只在垂直方向上平铺如果不指定背景图像重复属性,浏览器默认水平和垂直平铺背景图像。

css颜色代码大全

css颜色代码大全

css颜色代码大全CSS颜色代码大全。

在网页设计中,颜色的运用是非常重要的,它能够直接影响到用户的视觉体验和情绪感受。

而在CSS中,我们常常需要用到颜色代码来定义元素的颜色。

本文将为大家详细介绍CSS中常用的颜色代码,希望能够帮助大家更好地运用颜色来设计网页。

一、RGB颜色代码。

RGB颜色代码是由红(Red)、绿(Green)、蓝(Blue)三种颜色按照不同的比例混合而成的,每种颜色的取值范围是0-255。

在CSS中,我们可以使用rgb()函数来定义颜色,例如:```css。

div {。

background-color: rgb(255, 0, 0); / 红色 /。

}。

```。

二、十六进制颜色代码。

除了使用RGB颜色代码外,我们还可以使用十六进制颜色代码来表示颜色。

它由井号(#)和6位十六进制数组成,前两位表示红色分量,中间两位表示绿色分量,最后两位表示蓝色分量。

例如:```css。

div {。

background-color: #ff0000; / 红色 /。

}。

```。

三、颜色关键字代码。

在CSS中,还有一些颜色关键字可以直接使用,比如red、green、blue等。

这些颜色关键字代表了常见的颜色,使用起来非常方便。

例如:```css。

div {。

color: red; / 红色 /。

}。

```。

四、HSL颜色代码。

HSL颜色代码是由色相(Hue)、饱和度(Saturation)、亮度(Lightness)三个参数来定义颜色的,它能够更直观地表示颜色。

在CSS中,我们可以使用hsl()函数来定义颜色,例如:```css。

div {。

background-color: hsl(0, 100%, 50%); / 红色 /。

}。

```。

五、透明度。

除了定义颜色外,我们还可以使用rgba()函数来定义带有透明度的颜色。

其中,最后一个参数表示透明度,取值范围是0-1。

例如:```css。

div {。

css属性大全中文对照表

css属性大全中文对照表

css属性⼤全中⽂对照表Aalign-content 规定弹性容器内的⾏之间的对齐⽅式,当项⽬不使⽤所有可⽤空间时。

align-items 规定弹性容器内项⽬的对齐⽅式。

align-self 规定弹性容器内所选项⽬的对齐⽅式。

all 重置所有属性(除了 unicode-bidi 和 direction)。

animation 所有 animation-* 属性的简写属性。

animation-delay 规定开始动画的延迟。

animation-direction 规定动画是向前播放、向后播放还是交替播放。

animation-duration 规定动画完成⼀个周期应花费的时间。

animation-fill-mode 规定元素在不播放动画时(在开始之前、结束之后、或同时)的样式。

animation-iteration-count 规定动画的播放次数。

animation-name 规定 @keyframes 动画的名称。

animation-play-state 规定动画是播放还是暂停。

animation-timing-function 规定动画的速度曲线。

Bbackface-visibility 定义当⾯对⽤户时元素的背⾯是否应可见。

background 所有 background-* 属性的简写属性。

background-attachment 设置背景图像是与页⾯的其余部分⼀起滚动还是固定的。

background-blend-mode 规定每个背景图层(颜⾊/图像)的混合模式。

background-clip 定义背景(颜⾊或图像)应在元素内延伸的距离。

background-color 规定元素的背景⾊。

background-image 规定元素的⼀幅或多幅背景图像。

background-origin 规定背景图像的初始位置。

background-position 规定背景图像的位置。

background-repeat 设置是否以及如何重复背景图像。

CSS属性大全完整版

CSS属性大全完整版

CSS属性大全完整版字体属性:(font)大小font-size:x-large; (特大) xx-small; (极小)一般中文用不到,只要用数值就可以,单位:PX、PD 样式font-style:oblique; (偏斜体) italic; (斜体) normal; (正常) 行高line-height:normal; (正常) 单位:PX、PD、EM粗细font-weight:bold; (粗体) lighter; (细体) normal; (正常)变体font-variant:small-caps; (小型大写字母) normal; (正常)大小写text-transform:capitalize; (首字母大写) uppercase; (大写)lowercase; (小写) none; (无)修饰text-decoration:underline; (下划线) overline; (上划线)line-through; (删除线) blink; (闪烁)常用字体font-family:"Courier New", Courier, monospace, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif, Verdana背景属性:(background)色彩background-color: #FFFFFF;图片background-image: url();重复background-repeat: no-repeat;滚动background-attachment:fixed; (固定) scroll; (滚动)位置background-position:Left (水平) top (垂直);简写方法background:#000 url(..) repeat fixed left top;区块属性:(Block)字间距letter-spacing: normal; 数值对齐text-align:justify; (两端对齐) left; (左对齐)right; (右对齐) center; (居中)缩进text-indent: 数值px;垂直对齐vertical-align:baseline; (基线) sub; (下标) super; (下标)text-top; 文本顶端对齐| middle; 居中|bottom; 底部| text-bottom; 相对文本底端对齐词间距word-spacing: normal; 数值空格white-space:pre; (保留) nowrap; (不换行)显示display:block; (块) inline; (内嵌) list-item; (列表项)run-in; (追加部分) compact; (紧凑) marker; (标记)table; 表格inline-table; 内嵌表格table-raw-group;table-header-group; table-footer-group; table-raw;table-column-group; table-column; table-cell;table-caption; (表格标题)方框属性:(Box)width:; 宽height:; 高float:; 浮动clear:both; 清除浮动margin:; 外边距padding:; 内边距顺序:上右下左边框属性:(Border)border-style:dotted; (点线) dashed; (虚线) solid; (实线)double; (双线) groove; (槽线) ridge; (脊状)inset; (凹陷) outset; (外凸)border-width:; 边框宽度border-color:#; 边框颜色简写方法border:width style color;列表属性:(List-style)类型list-style-type:disc; (圆点) circle; (圆圈) square; (方块) decimal; (数字) lower-roman; (小写罗码数字) upper-roman; (大写罗码数字)lower-alpha; (小写字母) upper-alpha; (大写字母)位置list-style-position:outside; (外) inside; (里)图像list-style-image: url(..);定位属性:(Position)位置Position:absolute; 绝对位置|relative; 相对位置|static; 静止可见性visibility:inherit; 继承父元素| visible; 可见| hidden; 隐藏内容超出时overflow:visible; 可见| hidden; 隐藏| scroll; 滚动| auto; 自动裁切clip: rect(12px,auto,12px,auto)css属性代码大全一CSS文字属性:color : #999999; /*文字颜色*/font-family : 宋体,sans-serif; /*文字字体*/ font-size : 9pt; /*文字大小*/font-style:itelic; /*文字斜体*/font-variant:small-caps; /*小字体*/letter-spacing : 1pt; /*字间距离*/line-height : 200%; /*设置行高*/font-weight:bold; /*文字粗体*/vertical-align:sub; /*下标字*/vertical-align:super; /*上标字*/text-decoration:line-through; /*加删除线*/ text-decoration: overline; /*加顶线*/text-decoration:underline; /*加下划线*/ text-decoration:none; /*删除链接下划线*/ text-transform : capitalize; /*首字大写*/ text-transform : uppercase; /*英文大写*/ text-transform : lowercase; /*英文小写*/ text-align 水平对齐text-align:right; /*文字右对齐*/text-align:left; /*文字左对齐*/text-align:center; /*文字居中对齐*/text-align:justify; /*文字分散对齐*/ vertical-align 垂直对齐vertical-align:top; /*垂直向上对齐*/ vertical-align:bottom; /*垂直向下对齐*/vertical-align:middle; /*垂直居中对齐*/vertical-align:text-top; /*文字垂直向上对齐*/ vertical-align:text-bottom; /*文字垂直向下对齐*/二、CSS边框空白padding-top:10px; /*上边框留空白*/padding-right:10px; /*右边框留空白*/padding-bottom:10px; /*下边框留空白*/ padding-left:10px; /*左边框留空白/三、CSS符号属性:list-style-type:none; /*不编号*/list-style-type:decimal; /*阿拉伯数字*/list-style-type:lower-roman; /*小写罗马数字*/ list-style-type:upper-roman; /*大写罗马数字*/ list-style-type:lower-alpha; /*小写英文字母*/list-style-type:upper-alpha; /*大写英文字母*/list-style-type:disc; /*实心圆形符号*/list-style-type:circle; /*空心圆形符号*/list-style-type:square; /*实心方形符号*/list-style-image:url(/dot.gif); /*图片式符号*/list-style-position: outside; /*凸排*/list-style-position:inside; /*缩进*/四、CSS背景样式:background-color:#F5E2EC; /*背景颜色*/ background:transparent; /*透视背景*/background-image : url(/image/bg.gif); /*背景图片*/ background-attachment : fixed; /*浮水印固定背景*/ background-repeat : repeat; /*重复排列-网页默认*/ background-repeat : no-repeat; /*不重复排列*/ background-repeat : repeat-x; /*在x轴重复排列*/ background-repeat : repeat-y; /*在y轴重复排列*/指定背景位置background-position : 90% 90%; /*背景图片x与y轴的位置*/ background-position : top; /*向上对齐*/background-position : buttom; /*向下对齐*/background-position : left; /*向左对齐*/background-position : right; /*向右对齐*/background-position : center; /*居中对齐*/五、CSS连接属性:a /*所有超链接*/a:link /*超链接文字格式*/a:visited /*浏览过的链接文字格式*/a:active /*按下链接的格式*/a:hover /*鼠标经过链接*/鼠标光标样式:链接手指CURSOR: hand十字体cursor:crosshair箭头朝下cursor:s-resize十字箭头cursor:move箭头朝右cursor:move加一问号cursor:help箭头朝左cursor:w-resize箭头朝上cursor:n-resize箭头朝右上cursor:ne-resize箭头朝左上cursor:nw-resize文字I型cursor:text箭头斜右下cursor:se-resize箭头斜左下cursor:sw-resize漏斗cursor:wait光标图案(IE6) p {cursor:url("光标文件名.cur"),text;}六、CSS框线一览表:border-top : 1px solid #6699cc; /*上框线*/border-bottom : 1px solid #6699cc; /*下框线*/border-left : 1px solid #6699cc; /*左框线*/border-right : 1px solid #6699cc; /*右框线*/以上是建议书写方式,但也可以使用常规的方式如下: border-top-color : #369 /*设置上框线top颜色*/ border-top-width :1px /*设置上框线top宽度*/ border-top-style : solid/*设置上框线top样式*/其他框线样式solid /*实线框*/dotted /*虚线框*/double /*双线框*/groove /*立体内凸框*/ridge /*立体浮雕框*/inset /*凹框*/outset /*凸框*/七、CSS表单运用:<div><form><p>用户: <input type="text" class="text"></p>...</form></div>type属性取值单行文本域<p>用户: <input type="text" class="text"></p><input type="text" size="" maxlength="">单行的文本输入区域,size与maxlength属性用来定义此种输入区域显示的尺寸大小与输入的最大字符数多行文本域<p> <textarea cols="45" rows="5"></textarea></p>Cols:字符宽度rows:行数提交重置<p> <input type="submit" id="按钮" value="提交" /><input type="reset" id="重置" value="重置" /></p>提交到服务器的按钮,当这个按钮被点击时,就会连接到表单form属性action指定的url地址。

CSS_style属性大全

CSS_style属性大全

CSS style属性大全显示:标签属性/属性行为集合事件滤镜方法对象样式一、标签属性属性描述ALIGN align 设置或获取表格排列。

ALLOWTRANSPARENCY allowTransparency 设置或获取对象是否可为透明。

APPLICATION APPLICATION 表明对象的内容是否为HTML 应用程序(HTA),以便免除浏览器安全模式。

ATOMICSELECTION 指定元素及其内容是否可以一不可见单位统一选择。

BEGIN begin 设置或获取时间线在该元素上播放前的延迟时间。

BORDER border 设置或获取框架间的空间,包括3D 边框。

canHaveChildren 获取表明对象是否可以包含子对象的值。

canHaveHTML 获取表明对象是否可以包含丰富的HTML 标签的值。

CLASS className 设置或获取对象的类。

contentWindow 获取指定的frame 或iframe 的window 对象。

DA TAFLD dataFld 设置或获取由dataSrc 属性指定的绑定到指定对象的给定数据源的字段。

DA TASRC dataSrc 设置或获取用于数据绑定的数据源。

disabled 获取表明用户是否可与该对象交互的值。

END end 设置或获取表明元素结束时间的值,或者元素设置为重复的简单持续终止时间。

firstChild 获取对象的childNodes 集合的第一个子对象的引用。

FRAMEBORDER frameBorder 设置或获取是否显示框架的边框。

hasMedia 获取一个表明元素是否为HTML+TIME 媒体元素的Boolean 值。

HEIGHT height 设置或获取对象的高度。

HIDEFOCUS hideFocus 设置或获取表明对象是否显式标明焦点的值。

HSPACE hspace 设置或获取对象的水平边距。

ID id 获取标识对象的字符串。

CSS颜色代码大全参照表

CSS颜色代码大全参照表

CSS颜色代码大全参照表CSS颜色代码是用来设置网页元素的颜色的一种方法。

在CSS中,可以使用多种方式来表示颜色,包括预定义的颜色名称、十六进制值、RGB值、HSL值等等。

下面是一个CSS颜色代码的大全参照表,包含了常用的颜色名称和对应的代码表示。

1. 预定义颜色名称:- black: #000000- silver: #C0C0C0- gray: #808080- white: #FFFFFF- maroon: #800000- red: #FF0000- purple: #800080- fuchsia: #FF00FF- green: #008000- lime: #00FF00- olive: #808000- yellow: #FFFF00- navy: #000080- blue: #0000FF- teal: #008080- aqua: #00FFFF2. 十六进制颜色值:十六进制颜色值由6位十六进制数字组成,前两位表示红色分量,中间两位表示绿色分量,最后两位表示蓝色分量。

每个分量的取值范围是00到FF,其中00表示最小值,FF表示最大值。

例如,红色的十六进制颜色值是#FF0000,绿色的十六进制颜色值是#00FF00,蓝色的十六进制颜色值是#0000FF。

3. RGB颜色值:RGB颜色值由三个数字组成,分别表示红色分量、绿色分量和蓝色分量。

每个分量的取值范围是0到255,其中0表示最小值,255表示最大值。

例如,红色的RGB颜色值是rgb(255, 0, 0),绿色的RGB颜色值是rgb(0, 255, 0),蓝色的RGB颜色值是rgb(0, 0, 255)。

4. RGBA颜色值:RGBA颜色值和RGB颜色值类似,只是在RGB颜色值的基础上添加了一个透明度分量。

透明度分量的取值范围是0到1,其中0表示完全透明,1表示完全不透明。

例如,红色完全不透明的RGBA颜色值是rgba(255, 0, 0, 1),绿色半透明的RGBA颜色值是rgba(0, 255, 0, 0.5),蓝色完全透明的RGBA颜色值是rgba(0, 0, 255, 0)。

CSS常用样式属性大全

CSS常用样式属性大全

CSS常用样式属性大全1. 文本属性- `color`:设置文本颜色- `font-size`:设置字体大小- `font-family`:设置字体系列- `font-weight`:设置字体粗细- `text-align`:设置文本对齐方式- `text-decoration`:设置文本装饰(如下划线、删除线等)- `text-transform`:设置文本大小写转换2. 背景属性- `background-color`:设置背景颜色- `background-image`:设置背景图片- `background-repeat`:设置背景图片的重复方式- `background-position`:设置背景图片的位置- `background-size`:设置背景图片的尺寸3. 边框属性- `border`:设置元素边框样式、宽度和颜色- `border-radius`:设置元素边框的圆角- `border-color`:设置元素边框的颜色- `border-width`:设置元素边框的宽度4. 布局属性- `display`:设置元素的显示方式(如块级、内联等)- `width`:设置元素的宽度- `height`:设置元素的高度- `margin`:设置元素外边距- `padding`:设置元素内边距- `float`:设置元素的浮动方式5. 盒模型属性- `box-sizing`:设置元素的盒模型计算方式- `overflow`:设置元素溢出内容的处理方式- `position`:设置元素的定位方式- `top`:设置定位元素的上边距- `bottom`:设置定位元素的下边距- `left`:设置定位元素的左边距- `right`:设置定位元素的右边距以上是CSS中常用的样式属性,通过合理使用这些属性可以实现各种各样的页面效果。

在编写CSS代码时,建议将样式属性单独分行展示,以增加代码的可读性和维护性。

CSS列表属性(list-style)

CSS列表属性(list-style)

CSS列表样式属性列表样式类型属性(list-style-type)这个属性用来设定列表项标记(list-item marker)的类型。

有以下值:∙disc (缺省值,黑圆点)∙circle (空心圆点)∙square (小黑方块)∙decimal (数字排序)∙lower-roman (小写罗马字排序)∙upper-roman (大写罗马字排序)∙lower-alpha (小写字母排序)∙upper-alpha (大写字母排序)∙none (无列表项标记)以disc,circle,square,none作为列表项标记的列表示例<html><head><title>列表样式类型list-style-type</title><style type="text/css">ul.disc {list-style-type: disc}ul.circle {list-style-type: circle}ul.square {list-style-type: square}ul.none {list-style-type: none}</style></head><body><ul class="disc"><li>肉类</li><li>蔬菜</li><li>水果</li></ul><ul class="circle"><li>肉类</li><li>蔬菜</li><li>水果</li></ul><ul class="square"><li>肉类</li><li>蔬菜</li><li>水果</li></ul><ul class="none"><li>肉类</li><li>蔬菜</li><li>水果</li></ul></body></html>以decimal,lower-roman,upper-roman,lower-alpha,upper-alpha作为列表项标记的列表示例<html><head><title>列表样式类型list-style-type</title><style type="text/css">ol.decimal {list-style-type: decimal}ol.lower-roman {list-style-type: lower-roman}ol.upper-roman {list-style-type: upper-roman}ol.lower-alpha {list-style-type: lower-alpha}ol.upper-alpha {list-style-type: upper-alpha}</style></head><body><ol class="decimal"><li>肉类</li><li>蔬菜</li><li>水果</li></ol><ol class="lower-roman"><li>肉类</li><li>蔬菜</li><li>水果</li></ol><ol class="upper-roman"><li>肉类</li><li>蔬菜</li><li>水果</li></ol><ol class="lower-alpha"><li>肉类</li><li>蔬菜</li><li>水果</li></ol><ol class="upper-alpha"><li>肉类</li><li>蔬菜</li><li>水果</li></ol></body></html>列表样式位置属性(list-style-position)列表样式位置属性(list-style-position)有两个值:∙outside (以列表项内容为准对齐)∙inside (以列表项标记为准对齐)演示示例<html><title>列表样式位置list-style-position</title><head><style type="text/css">.u1 {list-style-position:outside}.u2 {list-style-position:inside}</style></head><body><ul class ="u1"><li>芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐</li><li>木子美</li><li>竹影青瞳</li><li>流氓燕</li></ul><ul class ="u2"><li>芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐芙蓉姐姐</li><li>木子美</li><li>竹影青瞳</li><li>流氓燕</li></ul></html>列表样式图片属性(list-style-image)列表项标记可以用图片来表示,用列表样式图片属性(list-style-image)来设定图片。

常用CSS标签及属性对照表

常用CSS标签及属性对照表

常用的CSS 标签标记属性翻译注释1、字体属性(type)font-family (使用什么字体)font-style(字体的样式,是否斜体):normal/italic/obliquefont-variant (字体大小写):normal/small-capsfont-weight (字体的粗细):normal/bold/bolder/lithterfont-size(字体的大小):absolute-size/relative-size/length/percentage2、颜色和背景属性(backgroud)color(定义前景色,例如:p{color:red})background-color ( 定义背景色)background-imag e(定义背景图片)background-repeat( 背景图案重复方式):repeat-x/repeat-y/no-repeatbackground-attachment (设置滚动):scroll( 滚动)/fixe( 固定的)background-position( 背景图案的初始位置):percentage/length/top/left/right/bottom3、文本属性:(block)定义间距:word-spacing(单词之间的距离)letter-spacing(字母之间的距离)text-decoration (定义文字的装饰):nore/underline/overline/line-through/blinkvertical-align ( 元素在垂直方向的位置) :baseline( 基线)/sub/super/top/text-top/middle/bottom/text-bottomtext-transform ( 使文本转换为其它方式) :capitalize( 大写)/uppercase(首字母大写)/lowercase( 小写)/nonetext-align (文字的对齐):left/right/center/justifytext-indent( 文本的首行缩进)length/percentageline-height( 文本的行高):normal/numbet/lenggth/percentage( 百分比)定义超链接:a:link {color:green;text-decoration:nore}( 未访问过的状态) a:visited {color:ren;text-decoration:underline;16pt}( 访问过的状态)a:hover {color:blue;text-decoration:underline;16pt}( 鼠标激活的状态)4、块属性(block)边距属性:margin-top (设置顶边距)margin-right( 设置右边距)margin-bottom (设置底边距)margin-left (设置左边距)填充距属性:padding-top 设置顶端真充距)padding-right 设置顶端真充距)padding-bottom 设置顶端真充距)padding-left 设置顶端真充距)5、边框属性(border )border-top-width (顶端边框宽度)border-right-width (右端边框宽度)border-bottom-width (底端边框宽度)border-left-width (d 左边框宽度)border-width (一次定义边框宽度)border-color (设置边框颜色)border-style(设置边框样式)border-top (一次定义顶端各种属性)border-right (一次定义右端各种属性)border-bottom (一次定义底端各种属性)border-left (一次定义左端各种属性)图文混排:width (定义宽度属性)height(定义高度属性)float (文字环绕在一个元素的四周)clear(定义某一边是否有环绕)6、项目符号和编号(list)display(定义是否显示)white-space(怎样处理空白部分):normal/pre/nowraplist-style-type(在列表前加项目符号)disc( 圆点)/circle( 圈)/square(方形)/decima l (阿拉伯数字)/lower-roman ( 小写罗马数字)/upper-roman ( 大写罗马数字) /lower-alpha (小写英文字母)/upper-alpha (大写英文字母)/norelist-style-tyle(在列表前加图案): <url>/nonelist-style-position(决定列表项中第二行的起邕位置)list-style( 一次性定义所有属性)7、定位(positioning)即层属性Type:设定对象的定位方式。

CSS属性大全

CSS属性大全

CSS属性⼤全1. ⽂字属性「字体族科」(font-family),设定时,需考虑浏览器中有⽆该字体。

「字体⼤⼩」(font-size),注意度量单位。

《绝对⼤⼩》|《相对⼤⼩》|《长度》|《百分⽐》(⼀般设置双数)「字体加粗」(font-weight),除了 normal(正常)、bold(粗体)、bolder(特粗)、lighter(细体)外,还有9种以像素为度量为单位的设置⽅式(100,200,300,400,500,600,700,800,900)。

「字体风格」(font-style),也就是字型。

(normal : 正常的字体italic : 斜体。

对于没有斜体变量的特殊字体,将应⽤obliqueoblique : 倾斜的字体)「字体变形」(font-variant),字体变形属性决定了字体显⽰是normal (普通) ,还是Small-caps(⼩型⼤写字母)当⽂字中所有字母都是⼤写的时候,⼩型⼤写字母(值)会显⽰⽐⼩写字母稍⼤的⼤写字符。

「字体」(font),《字体风格》|《字体变形》|《字体加粗》|《字体⼤⼩》|《⾏⾼》|《字体族科》2. ⽂本属性「⽂字间距」(word-spacing),主要⽤于控制⽂字间相隔的距离。

有正常(normal)和值(⾃定义间隔值)两种选择⽅式。

「字母间距」(letter-spacing),其作⽤与字符间距类似,也有正常(normal)和值(⾃定义间隔值)两种选择⽅式。

「垂直对齐」(vertical-align),控制⽂字或图像相对于其母体元素的垂直位置。

如将⼀个2×3像素的GIF图像同其母体元素⽂字的顶部垂直对齐,则该GIF图像将在该⾏⽂字的顶部显⽰。

共有基线(baseline,将元素的基准线同母体元素的基准线对齐)、下标(sub,将元素以下标的形式显⽰),上标(super,将元素以上标的形式显⽰)、顶部(top ,将元素顶部同最⾼的母体元素对齐)、⽂本顶对齐(text-top,将元素的顶部同母体元素⽂字的顶部对齐)、中线对齐(middle,将元素的中点同母体元素的中点对齐)、底部(bottom,将元素的底部同最低的母体元素对齐)及值(⾃定义)等9种选择。

网页HTML CSS 标签代码及描述大全

网页HTML CSS 标签代码及描述大全

CSS 背景属性属性描述background简写属性,作用是将背景属性设置在一个声明中。

background-attachment背景图像是否固定或者随着页面的其余部分滚动。

background-color设置元素的背景颜色。

background-image把图像设置为背景。

background-position设置背景图像的起始位置。

background-repeat设置背景图像是否及如何重复。

CSS 文本属性属性描述color设置文本颜色direction设置文本方向。

line-height设置行高。

letter-spacing设置字符间距。

text-align对齐元素中的文本。

text-decoration向文本添加修饰。

text-indent缩进元素中文本的首行。

text-shadow 设置文本阴影。

CSS2 包含该属性,但是CSS2.1 没有保留该属性。

text-transform控制元素中的字母。

unicode-bidi 设置文本方向。

white-space设置元素中空白的处理方式。

word-spacing设置字间距。

CSS 字体属性属性描述font简写属性。

作用是把所有针对字体的属性设置在一个声明中。

font-family设置字体系列。

font-size设置字体的尺寸。

font-size-adjust当首选字体不可用时,对替换字体进行智能缩放。

(CSS2.1 已删除该属性。

)font-stretch对字体进行水平拉伸。

(CSS2.1 已删除该属性。

)font-style设置字体风格。

font-variant以小型大写字体或者正常字体显示文本。

font-weight设置字体的粗细。

CSS 列表属性(list)属性描述list-style简写属性。

用于把所有用于列表的属性设置于一个声明中。

list-style-image将图象设置为列表项标志。

list-style-position设置列表中列表项标志的位置。

css颜色代码大全

css颜色代码大全

css颜色代码大全CSS颜色代码大全。

在网页设计中,颜色是非常重要的元素之一,它可以直接影响到用户的视觉体验和情感交流。

而在CSS中,我们可以通过颜色代码来定义元素的颜色,实现页面的美化和个性化。

本文将为大家介绍一些常用的CSS颜色代码,希望能够帮助大家更好地运用颜色,设计出更加吸引人的网页。

1. RGB颜色代码。

RGB颜色代码是由红色(Red)、绿色(Green)、蓝色(Blue)三种颜色通道组成的颜色模式。

在CSS中,我们可以使用RGB颜色代码来定义颜色,其格式为rgb(红色值, 绿色值, 蓝色值)。

例如,红色可以表示为rgb(255, 0, 0),绿色可以表示为rgb(0, 255, 0),蓝色可以表示为rgb(0, 0, 255)。

2. 十六进制颜色代码。

除了RGB颜色代码外,我们还可以使用十六进制颜色代码来定义颜色。

在CSS中,十六进制颜色代码由#符号和6位十六进制数字组成,每两位数字代表红、绿、蓝三种颜色通道的数值。

例如,红色可以表示为#FF0000,绿色可以表示为#00FF00,蓝色可以表示为#0000FF。

3. RGBA颜色代码。

RGBA颜色代码是在RGB颜色代码的基础上增加了一个alpha通道,用来表示颜色的透明度。

在CSS中,我们可以使用RGBA颜色代码来定义颜色,其格式为rgba(红色值, 绿色值, 蓝色值, 透明度值),透明度值的范围为0(完全透明)到1(完全不透明)。

例如,红色的半透明可以表示为rgba(255, 0, 0, 0.5)。

4. HSL颜色代码。

HSL颜色代码是由色相(Hue)、饱和度(Saturation)、亮度(Lightness)三个通道组成的颜色模式。

在CSS中,我们可以使用HSL颜色代码来定义颜色,其格式为hsl(色相值, 饱和度值, 亮度值),色相值的范围为0到360,饱和度值和亮度值的范围为0%到100%。

例如,红色可以表示为hsl(0, 100%, 50%)。

CSS标签属性大全

CSS标签属性大全

c s s样式大全(整‎理版)字体属性:(‎f ont)大小‎{font-size‎: x-large;‎}(特大) xx-s‎m all;(极小) ‎一般中文用不到,只要‎用数值就可以,单位‎:PX、PD样式‎{font-sty‎l e: obliqu‎e;}(偏斜体) i‎t alic;(斜体)‎normal;(正‎常)行高 {li‎n e-height:‎normal;}(‎正常) 单位:PX、‎P D、EM粗细‎{font-weig‎h t: bold;}‎(粗体) light‎e r;(细体) no‎r mal;(正常) ‎变体 {font-‎v ariant: s‎m all-caps;‎}(小型大写字母) ‎n ormal;(正常‎)大小写 {te‎x t-transfo‎r m: capita‎l ize;}(首字母‎大写) upperc‎a se;(大写) l‎o wercase;(‎小写) none;(‎无)修饰 {te‎x t-decorat‎i on: under‎l ine;}(下划线‎) overline‎;(上划线) lin‎e-through;‎(删除线) blin‎k;(闪烁)常用‎字体: (font-‎f amily)"Co‎u rier New"‎, Courier,‎monospace‎, "Times ‎New Roman‎", Times, ‎s erif, Ari‎a l, Helvet‎i ca, sans-‎s erif, Ve r‎d a n a背景属‎性:(backgro‎u nd)色彩 {‎b ackground‎-color: #F‎F FFFF;}图‎片 {backgro‎u nd-image:‎url();}‎重复 {backgr‎o und-repea‎t: no-repe‎a t;}滚动 {‎b ackground‎-attachmen‎t: fixed;}‎(固定) scrol‎l;(滚动)位置‎{backgrou‎n d-positio‎n: left;}(‎水平) top(垂直‎);简写方法 {‎b ac kgr oun d‎:#000 ur l(‎..) rep eat‎fi xed le f‎t top;} /*‎简写·这个在阅读代码‎中经常出现,要认真的‎研究*/区块属性:‎(Block) /‎*这个属性第一次认识‎,要多多研究*/ ‎字间距 {lett‎e r-spacing‎: normal;}‎数值 /*这个属性‎似乎有用,多实践下*‎/对齐 {tex‎t-align: j‎u stify;}(两‎端对齐) left;‎(左对齐) righ‎t;(右对齐) ce‎n ter;(居中) ‎缩进 {text-‎i ndent: 数值‎p x;}垂直对齐‎{vertical‎-align: ba‎s eline;}(基‎线) sub;(下标‎)super;(下‎标) top; te‎x t-top; mi‎d dle; bott‎o m; text-b‎o ttom;词间‎距word-spac‎i ng: norma‎l; 数值空格‎w hite-spac‎e: pre;(保留‎) nowrap;(‎不换行)显示‎{display:‎b lock;}(块)‎inline;(内‎嵌) list-it‎e m;(列表项) r‎u n-in;(追加部‎分) compact‎;(紧凑) mark‎e r;(标记) ta‎b le; inlin‎e-tableta‎b le-raw-gr‎o up; table‎-header-gr‎o up; table‎-footer-gr‎o up; table‎-raw; tabl‎e-column-g‎r oup; tabl‎e-column; ‎t able-cell‎;table-ca‎p tion;(表格标‎题) /*displ‎a y 属性的了解很模‎糊*/方‎框属性: (Box)‎ width:; ‎h eight:; f‎l oat:; cle‎a r:both; m‎a rgin:; pa‎d ding:;顺序‎:上右下左边框属‎性: (Border‎) border-‎s tyle: dot‎t ed;(点线) d‎a shed;(虚线)‎solid; do‎u ble;(双线) ‎g roove;(槽线‎)ridge;(脊‎状) inset;(‎凹陷) outset‎;border-w‎i dth:; 边框宽‎度 border-c‎o lor:#; 简‎写方法border:‎w idth styl‎e color; /‎*简写*/列表属性‎:(List-st‎y le) 类型li‎s t-style-t‎y pe: disc;‎(圆点) circl‎e;(圆圈) squ‎a re;(方块) ‎d ecimal;(数‎字) lower-r‎o man;(小罗码数‎字) upper-r‎o man; lowe‎r-alpha; u‎p per-alpha‎;位置list‎-style-pos‎i tion: out‎s ide;(外) i‎n side;图像‎l ist-style‎-image: ur‎l(..);定‎位属性: (Posi‎t ion) Pos‎i tion: abs‎o lute; rel‎a tive; sta‎t ic; visib‎i lity: inh‎e rit; visi‎b le; hidde‎n; overflo‎w: visible‎;hidden; ‎s croll; au‎t o; clip: ‎r ect(12px,‎a uto,12px,‎a uto) (裁切)‎css属性代码大全‎一 CSS文字属性‎:color ‎: #999999;‎/*文字颜色*/ ‎font-fam‎i ly : 宋体,s‎a ns-serif;‎/*文字字体*/ ‎font-siz‎e : 9pt; /‎*文字大小*/‎f ont-style‎:itelic; /‎*文字斜体*/ ‎font-vari‎a nt:small-‎c aps; /*小字‎体*/lett‎e r-spacing‎: 1pt; /*‎字间距离*/l‎i ne-height‎: 200%; /‎*设置行高*/‎f ont-weigh‎t:bold; /*‎文字粗体*/v‎e rtical-al‎i gn:sub; /‎*下标字*/v‎e rtical-al‎i gn:super;‎/*上标字*/ ‎text-dec‎o ration:li‎n e-through‎; /*加删除线*/‎text-de‎c oration: ‎o verline; ‎/*加顶线*/‎t ext-decor‎a tion:unde‎r line; /*加‎下划线*/te‎x t-decorat‎i on:none; ‎/*删除链接下划线*‎/text-t‎r ansform :‎capitaliz‎e; /*首字大写*‎/text-t‎r ansform :‎uppercase‎; /*英文大写*/‎text-tr‎a nsform : ‎l owercase;‎/*英文小写*/ ‎text-ali‎g n:right; ‎/*文字右对齐*/ ‎text-ali‎g n:left; /‎*文字左对齐*/ ‎text-ali‎g n:center;‎/*文字居中对齐*‎/text-a‎l ign:justi‎f y; /*文字分散‎对齐*/ver‎t ical-alig‎n属性vert‎i cal-align‎:top; /*垂直‎向上对齐*/v‎e rtical-al‎i gn:bottom‎; /*垂直向下对齐‎*/verti‎c al-align:‎m iddle; /*‎垂直居中对齐*/ ‎vertical‎-align:tex‎t-top; /*文‎字垂直向上对齐*/ ‎vertical‎-align:tex‎t-bottom; ‎/*文字垂直向下对齐‎*/二、CSS‎边框空白pad‎d ing-top:1‎0px; /*上边框‎留空白*/pa‎d ding-righ‎t:10px; /*‎右边框留空白*/ ‎padding-b‎o ttom:10px‎; /*下边框留空白‎*/paddi‎n g-left:10‎p x; /*左边框留‎空白三、CSS符‎号属性:lis‎t-style-ty‎p e:none; /‎*不编号*/‎l ist-style‎-type:deci‎m al; /*阿拉伯‎数字*/li‎s t-style-t‎y pe:lower-‎r oman; /*小‎写罗马数字*/‎l ist-style‎-type:uppe‎r-roman; /‎*大写罗马数字*/ ‎list-sty‎l e-type:lo‎w er-alpha;‎/*小写英文字母*‎/list-s‎t yle-type:‎u pper-alph‎a; /*大写英文字‎母*/list‎-style-typ‎e:disc; /*‎实心圆形符号*/ ‎list-styl‎e-type:cir‎c le; /*空心圆‎形符号*/li‎s t-style-t‎y pe:square‎; /*实心方形符号‎*/list‎-style-ima‎g e:url(/do‎t.gif); /*‎图片式符号*/‎l ist-style‎-position:‎outside; ‎/*凸排*/l‎i st-style-‎p osition:i‎n side; /*缩‎进*/四、CS‎S背景样式:b‎a ckground-‎c olor:#F5E‎2EC; /*背景颜‎色*/back‎g round:tra‎n sparent; ‎/*透视背景*/ ‎backgrou‎n d-image :‎url(/imag‎e/bg.gif);‎/*背景图片*/ ‎backgrou‎n d-attachm‎e nt : fixe‎d; /*浮水印固定‎背景*/bac‎k ground-re‎p eat : rep‎e at; /*重复排‎列-网页默认*/ ‎backgroun‎d-repeat :‎no-repeat‎; /*不重复排列*‎/backgr‎o und-repea‎t : repeat‎-x; /*在x轴重‎复排列*/ba‎c kground-r‎e peat : re‎p eat-y; /*‎在y轴重复排列*/ ‎指定背景位置‎backgroun‎d-position‎: 90% 90%‎; /*背景图片x与‎y轴的位置*/ ‎b ackground‎-position ‎: top; /*向‎上对齐*/ba‎c kground-p‎o sition : ‎b uttom; /*‎向下对齐*/b‎a ckground-‎p osition :‎left; /*向‎左对齐*/ba‎c kground-p‎o sition : ‎r ight; /*向‎右对齐*/ba‎c kground-p‎o sition : ‎c enter; /*‎居中对齐*/五‎、CSS连接属性:‎a /*所有超链接‎*/a:li‎n k /*超链接文字‎格式*/a:v‎i sited /*浏‎览过的链接文字格式*‎/a:acti‎v e /*按下链接的‎格式*/a:h‎o ver /*鼠标转‎到链接*/鼠标‎光标样式:链接手‎指 CURSOR: ‎h and十字体‎cursor:cr‎o sshair‎箭头朝下 curso‎r:s-resize‎十字箭头 cu‎r sor:move ‎箭头朝右 cur‎s or:move ‎加一问号 curs‎o r:help ‎箭头朝左 curs‎o r:w-resiz‎e箭头朝上 c‎u rsor:n-re‎s ize箭头朝‎右上 cursor:‎n e-resize ‎箭头朝左上 cu‎r sor:nw-re‎s ize文字I‎型 cursor:t‎e xt箭头斜‎右下 cursor:‎s e-resize ‎箭头斜左下 cu‎r sor:sw-re‎s ize漏斗‎c ursor:wai‎t光标图案(‎I E6) p {‎c ursor:url‎("光标文件名.cu‎r"),text;}‎六、CSS框线‎一览表:bor‎d er-top : ‎1px solid ‎#6699cc; /‎*上框线*/b‎o rder-bott‎o m : 1px s‎o lid #6699‎c c; /*下框线*‎/border‎-left : 1p‎x solid #6‎699cc; /*左‎框线*/bor‎d er-right ‎: 1px soli‎d #6699cc;‎/*右框线*/ ‎以上是建议书写方式‎,但也可以使用常规的‎方式如下:bo‎r der-top-c‎o lor : #36‎9 /*设置上框线t‎o p颜色*/b‎o rder-top-‎w idth :1px‎/*设置上框线to‎p宽度*/bo‎r der-top-s‎t yle : sol‎i d/*设置上框线t‎o p样式*/其‎他框线样式so‎l id /*实线框*‎/dotted‎/*虚线框*/ ‎double /*‎双线框*/g‎r oove /*立体‎内凸框*/ri‎d ge /*立体浮雕‎框*/inse‎t /*凹框*/ ‎outset /*‎凸框*/七、C‎S S表单运用:文‎字方块按钮‎复选框选择钮‎多行文字方块‎下拉式菜单‎选项1选项2八‎、CSS边界样式:‎margin-to‎p:10px; /*‎上边界*/m‎a rgin-righ‎t:10px; /*‎右边界值*/m‎a rgin-bott‎o m:10px; /‎*下边界值*/‎m argin-lef‎t:10px; /*‎左边界值*/ ‎CSS 属性:字‎体样式(Font S‎t yle)序号‎中文说明标记语法‎1 字体样式‎{font:fon‎t-style fo‎n t-variant‎font-weig‎h t font-si‎z e font-fa‎m ily}2 ‎字体类型 {fo‎n t-family:‎"字体1","字体2‎","字体3",..‎.}3 字体大‎小 {font-‎s ize:数值|in‎h erit| med‎i um| large‎| larger| ‎x-large| x‎x-large| s‎m all| smal‎l er| x-sma‎l l| xx-sma‎l l}4 字体‎风格 {font‎-style:inh‎e rit|itali‎c|normal|o‎b lique}‎5字体粗细‎{font-wei‎g ht:100-90‎0|bold|bol‎d er|lighte‎r|normal;}‎6 字体颜色‎ {color:‎数值;}7 阴‎影颜色 { tex‎t-shadow:1‎6位色值}8 ‎字体行高 {‎l ine-heigh‎t:数值|inher‎i t|normal;‎}9 字间‎距 {let‎t er-spacin‎g:数值|inher‎i t|normal}‎10 单词间距‎ {word-s‎p acing:数值|‎i nherit|no‎r mal}11‎字体变形 {f‎o nt-varian‎t:inherit|‎n ormal|sma‎l l-cps } ‎12 英文转换‎{text-tran‎s form:inhe‎r it|none|c‎a pitalize|‎u ppercase|‎l owercase}‎13 字体变形‎ {font-s‎i ze-adjust‎:inherit|n‎o ne}14字‎体{font-st‎r etch:cond‎e nsed|expa‎n ded|extra‎-condensed‎|extra-exp‎a nded|inh‎e rit|narro‎w er|normal‎|semi-c‎o ndensed|s‎e mi-expand‎e d|ultra-c‎o ndensed|u‎l tra-expan‎d ed|wider}‎文本样式(Te‎x t Style) ‎序号中文说明‎标记语法1 行‎间距 {li‎n e-height:‎数值|inherit‎|normal;} ‎2 文本修饰 {‎t ext-decor‎a tion:inhe‎r it|none|u‎n derline|o‎v erline|li‎n e-through‎|blink} ‎3段首空格 {‎t ext-inden‎t:数值|inher‎i t}4 水平‎对齐 {text‎-align:lef‎t|right|ce‎n ter|justi‎f y}5 垂直‎对齐{vertic‎a l-align:i‎n herit|top‎|bottom|te‎x t-top|tex‎t-bottom|b‎a seline|mi‎d dle|sub|s‎u p er}6 ‎书写方式 {wr‎i ting-mode‎:lr-tb|tb-‎r l}背景样式‎序号中文说明‎标记语法1 背‎景颜色 {bac‎k ground-co‎l or:数值}‎2背景图片 {‎b ackground‎-image: ur‎l(URL)|non‎e}3 背景重‎复 {backgr‎o und-repea‎t:inherit|‎n o-repeat|‎r epeat|rep‎e at-x|repe‎a t-y}4 ‎背景固定 {ba‎c kground-a‎t tachment:‎f ixed|scro‎l l}5 背景‎定位 {back‎g round-pos‎i tion:数值|t‎o p|bottom|‎l eft|right‎|center} ‎6 背影样式‎{backgroun‎d:背景颜色|背景图‎象|背景重复|背景附‎件|背景位置}框架‎样式(Box Sty‎l e)序号中‎文说明标记语法‎1 边界留白‎{margin:ma‎r gin-top m‎a rgin-righ‎t margin-b‎o ttom marg‎i n-left} ‎2 补白‎{padding:p‎a dding-top‎padding-r‎i ght paddi‎n g-bottom ‎p adding-le‎f t}3 边框‎宽度{bor‎d er-width:‎b order-top‎-width bor‎d er-right-‎w idth bord‎e r-bottom-‎w idth bord‎e r-left-wi‎d th} 宽度‎值: thin|me‎d ium|thick‎|数值4 边框‎颜色 {bord‎e r-color:数‎值数值数值数值‎}数值:分别代表‎t op、right、‎b ottom、lef‎t颜色值5 边‎框风格{bord‎e r-style:n‎o ne|hidden‎|inherit|d‎a shed|soli‎d|double|i‎n set|outse‎t|ridge|gr‎o ove}6 边‎框 {bord‎e r:border-‎w idth bord‎e r-style c‎o lor}上边‎框{border-‎t op:border‎-top-width‎border-st‎y le color}‎右边框‎ {border-‎r ight:bord‎e r-right-w‎i dth borde‎r-style co‎l or}下‎边框 {bor‎d er-bottom‎:border-bo‎t tom-width‎border-st‎y le color}‎左边框‎ {border-‎l eft:borde‎r-left-wid‎t h border-‎s tyle colo‎r}7 宽‎度 {width‎:长度|百分比| a‎u to}8 高‎度 {hei‎g ht:数值|aut‎o}9 漂‎浮 {float‎:left|righ‎t|none}‎10 清除‎{clear:non‎e|left|rig‎h t|both}‎分类列表序号中文‎说明标记语法‎1 控制显示 {d‎i splay:non‎e|block|in‎l ine|list-‎i tem}2 ‎控制空白 {whit‎e-space:no‎r mal|pre|n‎o warp}3‎符号列表{lis‎t-style-ty‎p e:disc|ci‎r cle|squar‎e|decimal|‎l ower-roma‎n|upper-ro‎m an|lower-‎a lpha |uppe‎r-alpha|no‎n e}4 图形‎列表 {list‎-style-ima‎g e:URL}‎5位置列表 {‎l ist-style‎-position:‎i nside|out‎s ide}6 ‎目录列表 {li‎s t-style:目‎录样式类型|目录样式‎位置|url}‎7鼠标形状{c‎u rsor:hand‎|crosshair‎|text|wait‎|move|help‎|e-resize|‎n w-resize|‎w-resize|s‎-resize |se‎-resize|sw‎-resize}‎。

css代码大全

css代码大全

背景头效果1. <style type="text/css">2: <!--3: body{4: margin:0;5: padding:0;6: background-color:#FFFFFF;7: }8: .alpha1,.alpha2{9: width:100%;10: height:auto;11: min-height:250px;/* 必需*/12: _height:250px;/* 必需*/13: overflow:hidden;14: background-color:#FF0000;/* 背景色*/15: }16: .alpha1{17: filter:alpha(opacity=20); /* IE 透明度20% */18: }19: .alpha2{20: background-color:#FFFFFF;21: -moz-opacity:0.8; /* Moz + FF 透明度20%*/22: opacity: 0.8; /* 支持CSS3的浏览器(FF 1.5也支持)透明度20%*/ 23: }24: .ap2{25: position:absolute;26: }27: -->28: </style>html:1: <!--S Demo-->2: <div class="alpha1">3: <div class="ap2">4: <p>背景为红色(#FF0000),透明度20%。

</p>5: </div>6: <!--[if IE]><![if !IE]><![endif]--> <div class="alpha2"></div> <!--[if IE]><![endif]><![endif]-->7: </div><style type="text/css">a{color:blue;text-decoration:none;}a:hover{color:red;}.boxBorder{//文本框border-width:5px;border-style:solid;}.picButton{ //按钮class=“”background-color:#00FF00;color: #6600FF;border:0px;margin:0px;padding:0px;height:23px;width:82px;font-size:14px;}</style>鼠标移动图片的变动<form action="" method="get" ><!--鼠标背景图片变动--><input name="" type="button" value="提交"style="width:82px;height:23px; background-image:url(images/DSC00231.JPG );" onMouseover="this.style.backgroundImage='url(images/DSC00231.JPG)'" onMouseOut="this.style.backgroundImage='url(images/lo.jpg)'"></form>鼠标移动图片的变动<style type="text/css">.ni{backgroundImage='url(images/DSC00231.JPG);color:#990033;border::5px;margin::0px;padding:0px;height:23px;width:82px;font-size:14px;}.nihao{backgroundImage='url(images/lo.JPG);color: #0000FF;border::5px;margin::0px;padding:0px;height:23px;width:82px;font-size:14px;}</style><form action="" method="get" ><!--鼠标背景图片变动--><input name="" type="button" value="提交" class="nihao"height:23px; background-image:url(images/DSC00231.JPG );"in="this.classname='ni'"nihao="this.classname='nihao'"></form>常用代码控制横向和纵向滚动条的显隐?<body style="overflow-y:hidden"> 去掉x轴<body style="overflow-x:hidden"> 去掉y轴<body scroll="no">不显表格变色<TD style="CURSOR: hand">禁止复制,鼠标拖动选取<body ondragstart=window.event.returnValue=false oncontextmenu=window.event.returnValue=false onselectstart=event.returnValue=false>普通iframe页面<iframe name="name" src="main.htm" width="450" height="287" scrolling="Auto" frameborder="0"></iframe>iframe自适应高度<iframe name="pindex" src="index.asp" frameborder=false scrolling="auto" width="100%" height="100%" frameborder=no ></iframe>IE地址栏前换成自己的图标&可以在收藏夹中显示出你的图标<link rel="Shortcut Icon" href="favicon.ico"><link rel="Bookmark" href="favicon.ico">字号缩放越来越多的人长时间的泡网,眼镜的普及率也越来越高,让文字大点,让更多的用户看的更清楚。

CSS3常用属性大全

CSS3常用属性大全

CSS3 动画属性(Animation)keyframes //规定动画。

animation //所有动画属性的简写属性,除了animation-play-state 属性。

animation-name //规定keyframes 动画的名称。

animation-duration //规定动画完成一个周期所花费的秒或毫秒。

animation-timing-function //规定动画的速度曲线。

animation-delay //规定动画何时开始。

animation-iteration-count //规定动画被播放的次数。

animation-direction //规定动画是否在下一周期逆向地播放。

animation-play-state //规定动画是否正在运行或暂停。

animation-fill-mode //规定对象动画时间之外的状态。

CSS 背景属性(Background)background //在一个声明中设置所有的背景属性。

background-attachment //设置背景图像是否固定或者随着页面的其余部分滚动。

background-color //设置元素的背景颜色。

background-image //设置元素的背景图像。

background-position //设置背景图像的开始位置。

background-repeat //设置是否及如何重复背景图像。

background-clip //规定背景的绘制区域。

background-origin //规定背景图片的定位区域。

background-size //规定背景图片的尺寸。

CSS 边框属性(Border 和Outline)border //在一个声明中设置所有的边框属性。

border-bottom //在一个声明中设置所有的下边框属性。

border-bottom-color //设置下边框的颜色。

border-bottom-style //设置下边框的样式。

css样式代码大全

css样式代码大全

css样式代码大全CSS样式代码大全。

CSS(Cascading Style Sheets)是一种用于描述网页样式和布局的标记语言,它可以让我们轻松地控制网页的外观和布局。

在网页开发中,掌握各种CSS样式代码是非常重要的。

本文将为大家详细介绍各种常用的CSS样式代码,帮助大家更好地掌握CSS技术。

1. 文本样式。

在网页设计中,文本样式是非常重要的一部分。

我们可以通过CSS来设置文本的字体、大小、颜色、对齐方式等。

下面是一些常用的文本样式代码:```css。

/ 设置字体大小和颜色 /。

p {。

font-size: 16px;color: #333;}。

/ 设置文本对齐方式 /。

h1 {。

text-align: center;}。

/ 设置字体样式 /。

h2 {。

font-family: Arial, sans-serif;}。

```。

2. 背景样式。

背景样式可以让我们为网页元素设置背景图片、颜色、重复方式等。

下面是一些常用的背景样式代码:```css。

/ 设置背景颜色 /。

body {。

background-color: #f4f4f4;}。

/ 设置背景图片 /。

div {。

background-image: url('bg.jpg');background-repeat: no-repeat;}。

/ 设置背景大小和定位 /。

header {。

background-size: cover;background-position: center;}。

```。

3. 盒子模型样式。

盒子模型是CSS布局的基础,它包括内容、内边距、边框和外边距。

我们可以通过CSS来控制盒子模型的各个部分。

下面是一些常用的盒子模型样式代码:```css。

/ 设置内边距 /。

div {。

padding: 20px;}。

/ 设置边框样式 /。

img {。

border: 1px solid #ccc;}。

/ 设置外边距 /。

css代码大全

css代码大全

css代码大全css属性代码大全一 CSS文字属性: color : #999999; /*文字颜色*/ font-family :宋体,sans-serif; /*文字字体*/ font-size : 9pt; /*文字大小*/ font-style:itelic; /*文字斜体*/ font-variant:small-caps; /*小字体*/ letter-spacing : 1pt; /*字间距离*/ line-height : 200%; /*设置行高*/ font-weight:bold; /*文字粗体*/ vertical-align:sub; /*下标字*/ vertical-align:super; /*上标字*/ text-decoration:line-through; /*力口删除线*/ text-decoration: overline; /*力口顶线*/ text-decoration:underline; /*力口下划线*/ text-decoration:none; /*删除链接下划线*/ text-transform : capitalize; /*首字大写*/ text-transform : uppercase; /*英文大写*/ text-transform : lowercase; /*英文小写*/ text-align:right; /*文字右对齐*/ text-align:left; /*文字左对齐*/ text-align:center; /*文字居中对齐*/ text-align:justify; /*文字分散对齐*/ vertical-align属性vertical-align:top; /*垂直向上对齐*/ vertical-align:bottom; /*垂直向下对齐*/ vertical-align:middle; /*垂直居中对齐*/ vertical-align:text-top; /*文字垂直向上对齐*/ vertical-align:text-bottom; /*文字垂直向下对齐*/ 二、CSS边框空白padding-top:10px; /*上边框留空白*/ padding-right:10px; /*右边框留空白*/ padding-bottom:10px; /*下边框留空白*/padding-left:10px; /*左边框留空白 三、CSS 符号属性:list-style-type:none; /*不编号*/ list-style-type:decimal; /*阿拉伯数字*/ list-style-type:lower-roman; /*小写罗马数字*/ list-style-type:upper-roman; /*大写罗马数字*/ list-style-type:lower-alpha; /*小写英文字母*/ list-style-type:upper-alpha; /*大写英文字母*/list-style-type:disc; /*实心圆形符号*/ list-style-type:circle; /*空心圆形符号*/ list-style-type:square;/*实心方形符号*/ list-style-image:url(/; /*图片式符号*/list-style-position: outside; /*凸排*/ list-style-position:inside; /*缩进*/四、CSS 背景样式: background-color:#F5E2EC; /*背景颜色*/ background:transparent; /*透视背景*/ background-image : url(/image/; /*背景图片*/ background-attachment : fixed; /*浮水印固定背景*/ repeat; /*重复排列-网页默认*/ no-repeat; /*不重复排列*/ repeat-x; /*在x 轴重复排列*/ repeat-y; /*在y 轴重复排列*/90% 90%; /*背景图片x 与y 轴的位置*/top; /*向上对齐*/ buttom; /*向下对齐*/ left; /*向左对齐*/ right; /*向右对齐*/ center; /*居中对齐*/ 五、CSS 连接属性: a /*所有超链接*/a:link /*超链接文字格式*/background-repeat background-repeatbackground-repeatbackground-repeat指定背景位置background-position background-position background-position background-positionbackground-positionbackground-positiona:visited /*浏览过的链接文字格式*/a:active /*按下链接的格式*/a:hover /*鼠标转到链接*/鼠标光标样式:链接手指CURSOR: hand 十字体 cursor:crosshair 箭头朝下 cursor:s-resize 十字箭头cursor:move 箭头朝右cursor:move 力口一问号cursor:help 箭头朝左 cursor:w-resize 箭头朝上 cursor:n-resize 箭头朝右上 cursor:ne-resize 箭头朝左上 cursor:nw-resize 文字I型cursor:text箭头斜右下 cursor:se-resize 箭头斜左下 cursor:sw-resize 漏斗cursor:wait光标图案(IE6) p {cursor:url("光标文件名.cur"),text;} 六、CSS框线一览表:border-top : 1px solid #6699cc; /*上框线*/ border-bottom : 1px solid #6699cc; /*下框线*/ border-left : 1px solid #6699cc; /*左框线*/ border-right : 1px solid #6699cc; /*右框线*/ 以上是建议书写方式,但也可以使用常规的方式如下: border-top-color : #369 /*设置上框线top颜色*/ border-top-width :1px /*设置上框线top宽度*/ border-top-style : solid/*设置上框线top样式*/ 其他框线样式 solid /*实线框*/ dotted /*虚线框*/double /*双线框*/groove /*立体内凸框*/ridge /*立体浮雕框*/inset /*凹框*/outset /*凸框*/七、CSS表单运用:文字方块按钮复选框选择钮多行文字方块下拉式菜单选项1选项2八、CSS边界样式:margin-top:10px; /*上边界*/margin-right:10px; /*右边界值*/margin-bottom:10px; /*下边界值*/margin-left:10px; /*左边界值*/CSS属性:字体样式(Font Style)序号中文说明标记语法1 字体样式 {font:font-style font-variant font-weight font-size font-family)2字体类型{font-family:〃字体1〃,〃字体2〃,〃字体3〃,...)3字体大小 {font-size:数值|inherit| medium| large| larger| x-large| xx-large| small| smaller| x-small| xx-small)4字体风格 {font-style:inherit|italic|normal|oblique)5字体粗细{font-weight:100-900|bold (粗体)|bolder (特粗)|lighter (细体)|normal (正常);)6字体颜色{color:数值;)7阴影颜色{text-shadow:16位色值)8字体行高 {line-height:数值|inherit|normal;)9字间距 {letter-spacing:数值|inherit|normal)10单词间距 {word-spacing:数值|inherit|normal)11字体变形 {font-variant:inherit|normal|small-cps )12英文转换{text-transform:inherit|none|capitalize|uppercase|lowercase}13字体变形 {font-size-adjust:inherit|none)14字体 {font-stretch:condensed|expanded|extra-condensed|extra- expanded|inherit|narrower|normal| semi-condensed|semi-expanded|ultra- condensed|ultra-expanded|wider)文本样式(Text Style)序号中文说明标记语法1行间距 {line-height:数值|inherit|normal;}2文本修饰 {text-decoration:inherit|none|underline|overline|line- through|blink)3段首空格{text-indent:数值1inherit}4水平对齐 {text-align:left|right|center|justify}5垂直对齐 {vertical-align:inherit|top|bottom|text-top|text-bottom|baseline|middle|sub|super}6书写方式 {writing-mode:lr-tb|tb-rl}背景样式序号中文说明标记语法1背景颜色{background-color:数值}2背景图片 {background-image: url(URL)|none}3背景重复 {background-repeat:inherit|no-repeat|repeat|repeat-x|repeat-y}4背景固定 {background-attachment:fixed|scroll}5背景定位 {background-position:数值|top|bottom|left|right|center}6背影样式{background:背景颜色|背景图象|背景重复|背景附件|背景位置}框架样式(Box Style)序号中文说明标记语法1边界留白{margin:margin-top margin-right margin-bottom margin-left} 2补白 {padding:padding-top padding-right padding-bottom padding-left}3边框宽度{border-width:border-top-width border-right-width border-bottom-width border-left-width)宽度值:thin|medium|thick|数值4边框颜色{border-color:数值数值数值数值) 数值:分别代表top、right、bottom、left颜色值5边框风格{border-style:none|hidden|inherit|dashed|solid|double|inset|outset|ridge|groo ve)6 边框{border:border-width border-style color)上边框{border-top:border-top-width border-style color)右边框{border-right:border-right-width border-style color)下边框{border-bottom:border-bottom-width border-style color)左边框{border-left:border-left-width border-style color)7宽度{width:长度|百分比| auto)8高度{height:数值|auto)9漂浮{float:left|right|none)10清除{clear:none|left|right|both)分类列表序号中文说明标记语法11制显示{display:none|block|inline|list-item)2控制空白{white-space:normal|pre|nowarp)3符号列表{list-style-type:disc|circle|square|decimal|lower-roman|upper-roman|lower-alpha|upper-alpha|none)4图形列表{list-style-image:URL)5位置列表{list-style-position:inside|outside)6目录列表{list-style:目录样式类型|目录样式位置|url)7 鼠标形状{cursor:hand|crosshair|text|wait|move|help|e-resize|nw-resize|w-resize|s-resize|se-resize|sw-resize)CSS属性大全[背景]属性共有六项:「背景颜色」(background-color),设置背景颜色。

css代码大全

css代码大全

css属性代码大全一CSS文字属性:color : #999999; /*文字颜色*/ font-fam i I y :宋体,sans-ser if; /*文字字体*/ font-size : 9pt; /*文字大小*/ font-style: iteI ic; /*文字斜体*/ font-variant:smal Heaps; /*小字体*/ letter-spacing : 1pt; /*字间距离*/I ine-height : 200%; /*设置行高*/ font-weight:bold; /*文字粗体*/ vertical-al ign:sub; /*下标字*/ vertical-align:super; /*上标字*/ text-decor at i on: I i ne-through; /* 力口删除线*/ text - decora t i on: over line; /* 力匕顶线*/ text - decor a t i on: under I i ne; /* 力。

下戈U 线*/ text-decoration:none; /*刪除链接下划线*/ text-transform : capital ize; /*首字大写*/ text-transform : uppercase; /*英文大写*/ text-transform : Iowercase; /*英文小写*/ text-a I ign: r ight; /*文字右对齐*/ text-aI ign: left; /*文字左对齐*/ text-a I ign:center ; /*文字居中对齐*/ text-al ign: justify; /*文字分散对齐*/ ver ti cal-a I ign 属性A Bvert i cal-a I ign: top; /* 垂直向上对齐*/ vert i cal-a I i gn: bottom; /* 垂直向下对齐 */ vertical-al ign:middle; /*垂直居中对齐*/ vertical-a I ign: text-top; /* 文字垂直向上对齐 */ vertical-a I i gn: text-bottom;/* 文字垂直向下对齐 */二、css边框空白padding-top: 10px; /*上边框留空白*/padd i ng-r i ght: 10px; /*右边框留空白*/(padding-bottom: 10px; /*下边框留空白*/ padding-1 eft:10px; /*左边框留空白三、CSS符号属性:I i st-sty I e-type: none; /* 不编号*/I i st - sty I e-type: deci ma I ; /* 阿拉伯数字 */I ist-sty Ie-type: Iower-roman; /*小写罗马数字*/I i st-sty I e-type: upper-roman; /*大写罗马数字*/I ist-styIe-type: lower-alpha; /*小写英文字母*/ $I i st - sty I e-type: upper-alpha; /*大写英文字母 */I i st-sty I e-type:di sc; /*实心圆形符号*/I i st-sty I e-type:ci rc I e; /*空心圆形符号*/I i st-sty I e-type: square; /*实心方形符号*/I i st-sty I e~image:ur I (/; /*图片式符号*/I ist-styIe-position: outside; /*凸排*/I ist-sty Ie-position: inside; /*缩进*/四、CSS背景样式:background-co I or: #F5E2EC; /*背景颜色*/ background:transparent; /*透视背景*/ background-image : ur I (/image/; /*背景图片 */ background-attachment : f i xed; /*浮水印固定背景*/ background-repeat : repeat; /*重复排列-网页默认*/ background-repeat : no-repeat; /*不重复排列*/ background-repeat : repeat-x; /*在x轴重复排列*/ background-repeat : repeat-y; /*在y轴重复排列*/ 指定背景位置background - posit ion : 90% 90%; /* 背景图片x与y轴的位置*/a /*所有超链接*/a: I ink /*超链接文字格式*/ a:visited /*浏览过的链接文字格式*/ a:active /*按下链接的格式*/a:hover /*鼠标转到链接*/鼠标光标样式:链接手指CURSOR: hand十字体 cursor :crosshai r箭头朝下 cursor: s-res i ze十字箭头cursor move箭头朝右cursor :move加一问号 cursor:he Ip箭头朝左 cursor :w-resize箭头朝上 cursor :n-resizeI箭头朝右上 cursor:ne~resize箭头朝左上 cursor:nw-resize文字 I 型 cursor: text箭头斜右下 cursor: se-resize箭头斜左下 cursor: sw-resi ze漏斗 cursor:wait光标图案(IE6) p (cursor:ur I ("光标文件名.cur"), text;)六、CSS 框线一览表:background-pos i t i on background-pos i t i on background-pos i t i on background-posi t i on background-pos i t i on:top; /*向上对齐*/:buttom; /*向下对齐*/:left; /*向左对齐*/:right; /*向右对齐*/ :center; /*居中对齐*/border-top : 1px solid #6699cc; /*上框线*/ border-bottom : 1 px solid #6699cc; /*下框线*/ border-left : 1 px solid #6699cc; /*左框线*/ border-r i ght : 1px solid #6699cc; /* 右框线 */ 以上是建议书写方式,但也可以使用常规的方式如下: border-top-color : #369 /*设置上框线top颜色*/ border-top-width : 1 px /*设置上框线top宽度*/ border-top-style : so I i d/* 设置上框线top 样式 */其他框线样式sol id /*实线框*/dotted /*虚线框*/ doub I e /*双线框*/ groove /*立体内凸框*/ ridge /*立体浮雕框*/ inset /*凹框*/ outset /*凸框*/>七、CSS表单运用:文字方块按钮复选框选择钮多行文字方块下拉式菜单选项1选项2八、CSS边界样式:Imargin-top: 10px; /*上边界*/marg i n~r i ght: 10px; /*右边界值*/ margin-bottom: 10px; /*下边界值*/ margin-1 eft: 10px; /* 左边界值*/CSS属性:字体样式(Font Sty I e)序号中文说明标记语法I字体样式{font:font-style font-variant font-weight font-sizefont一fami Iy)2字体类型{font-fami ly:H字体1”字体2","字体3",...}3字体大小{font-size:数值| inher i11 medium| I arge| Iarger | xTargelxx-1arge| smaI I| smaI I er| x-smaI I| xx-smaI I}4字体风格{font-sty I e: i nher it | ita I ic | norma I | ob I ique)5字体粗细{f ont-we i ght: 100-9001 bo I d (粗体)|bolder (特紐)〔lighter (细体)|normaI (正常);)6字体颜色{color:数值汀7阴影颜色{text-shadow: 16位色值}8字体行高{I ine-height:数值| inher it |normal;)9字间距{letter-spacing:数值| inher i11norma I)10单词间距{word-spacing:数值| inher i11 norma I)II字体变形{font-variant: i nherit| norma I | sma I l-cps }12英文转换{text-transform:i nher i 11none|cap i taIi ze|uppercase|Iowercase)13 字体变形{font-size - ad just: i nher it | none)14字体{font-stretch:condensed|expanded|extra-condensed|extra-expanded|i nherit|narrower|norma I|semi-condensed|semi-expanded|uItra-condensed|uItra-expanded|wi der)文本样式(Text Sty I e)序号中文说明标记语法1 行间距{I i ne-he i ght:数值 | i nher i11 norma I ;)2文本修饰{text-decorat i on:i nher i 11none|under Ii ne|over Ii ne|Ii ne~through|bIi nk)3段首空格(text-indent:数值| inher it)4水平对齐{text-a I i gn: I eft | r i ght | center | just i fy)5垂直对齐{vert i caI-a I i gn:i nher i 11top|bottom|text-top|text-bottom|base Ii ne|mi dd Ie|sub|super)6书写方式{wr i t i ng-mode: I r-tb 11b-r I}背景样式序号中文说明标记语法1背景颜色{background-co I or:数值}2背景图片{background- image: ur I (URL) | none)3背景重复{background-repeat:i nher i11no-repea11repea11repeat-x|repeat-y}4背景固定{background-attachment: f i xed | scro I I}5背景定位{background-position:数值|top|bottom| left|right|center}6背影样式{background:背景颜色|背景图象|背景重复|背景附件|背景位置} 框架样式(Box Style)序号中文说明标记语法1边界留白{margi n:margi n-top margin-r igh t margin-bo ttom marg in-1 eft} 2补白{padding:padding-top padding-r ight padding-bottom padding-left}3边框宽度{border-width:border-top-width border-r ight-widthborder-bottom-wi dth border-1eft-wi dth}宽度值:t hin|medium|thick| 数值4边框颜色(border-color:数值数值数值数值} 数值:分别代表top、right、bottom I eft 颜色值5边框风格{border-styIe:none|h i dden|i nher i11dashed|so I i d|doubIe|i nse11outset|r i dge|groove)6边框{border:border-wi dth border-style co I or)上边框[border-top:border-top-width border-style color) 右边框[border-r i ght:border-right-wi dth border-style co I or) 下边框{border-bottom:border-bottom-wi dth border-style co I or) 左边框{border-left:border-left-wi dth border-style co I or) 7宽度(width:长度J百分比| auto)8高度(he i ght:数值 | auto)9漂浮(fI oat:I eft|r i ght|none)10清除[cI ear:none|I eft|r i ght|both)分类列表序号中文说明标记语法1控制显示{display:none|block| inI ine| I ist-item)2控制空白{white-space:normal |pre|nowarp}3符号列表{Ii st-styIe-type:d i sc|c i rcIe|square|deci ma I|Iower-roman|upper-roman|I ower-aIpha|upper-aIpha|none)4图形列表{I i st-sty I e-image: URL)5位置歹〔J 表{I i s t-sty le-posi ti on:inside|o ut side)6目录列表{list-style: 0录样式类型|目录样式位置|url)7鼠标形状(cursor:hand|crossha i r|text|wa i 11move|he Ip|e-res i ze|nw-res i ze|w-res i z e|s~res i ze|se-res i ze|sw-res i ze)CSS属性大全[背景]属性共有六项:「背景颜色」(background-color),设置背景颜色。

dede模板设计简单而实用的5个CSS属性代码

dede模板设计简单而实用的5个CSS属性代码

dede模板设计简单而实用的5个CSS属性代码1. CSS Clipclip 属性就像一个面具,允许你遮盖一个矩形框下面的内容。

要剪辑一个元素,你必须指定position ,以absolute 。

然后,指定它的top ,right ,bottom ,和left的值。

下面的示例演示如何使用掩码图像剪辑属性。

首先,指定《div》元素position:relative 。

下一步,指定《img》元素position:absolute和矩形容器;.clip { position:relative; height:130px; width:200px; border:solid 1px #ccc; } .clip img { position:absolute; clip:rect(30px 165px 100px 30px); }图像调整和剪辑Image Resize and Clip在这个例子中,我将告诉你如何调整和剪辑图像。

我的原图像是矩形格式。

我想把它按比例缩放50%并从中截取一个方框作为缩略图,所以,我用width和height属性来调整图像和遮盖层。

然后,我用left属性将图像向左离开15px。

.gallery li { float:left; margin:0 10px 0 0; position:relative; width:70px; height:70px; border:solid 1px #000; } .gallery img { width:100px; height:70px; position:absolute; clip:rect(0 85px 70px 15px); left:-15px; }2.Min-heightmin-height属性允许您指定一个元素的最小高度。

当你想平衡布局的时候,这个是很有用的。

我把它用在我的职位公告栏,确保内容板块总是高于侧栏的高度;.with_minheight { min-height:550px; }IE6 Min-height HACK注意:IE6不支持Min-height,但是这里有一个HACK.with_minheight { min-height:550px; height:auto !important; height:550px; }3. White-spacewhite-space属性指定一个元素里的空白如何处理的,例如,指定white-space:nowrap将防止文本转到下一行;em { white-space:nowrap; }4. Cursor如果你想要更改一个按钮的行为,那么光标的形状也要更改;例如,当一个按钮被禁用,光标应改为默认(箭头),以表明它是无法点击。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

css属性代码大全一CSS文字属性:color : #999999; /*文字颜色*/font-family : 宋体,sans-serif; /*文字字体*/font-size : 9pt; /*文字大小*/font-style:itelic; /*文字斜体*/font-variant:small-caps; /*小字体*/letter-spacing : 1pt; /*字间距离*/line-height : 200%; /*设置行高*/font-weight:bold; /*文字粗体*/vertical-align:sub; /*下标字*/vertical-align:super; /*上标字*/text-decoration:line-through; /*加删除线*/text-decoration: overline; /*加顶线*/text-decoration:underline; /*加下划线*/text-decoration:none; /*删除链接下划线*/text-transform : capitalize; /*首字大写*/text-transform : uppercase; /*英文大写*/text-transform : lowercase; /*英文小写*/text-align:right; /*文字右对齐*/text-align:left; /*文字左对齐*/text-align:center; /*文字居中对齐*/text-align:justify; /*文字分散对齐*/vertical-align属性vertical-align:top; /*垂直向上对齐*/vertical-align:bottom; /*垂直向下对齐*/ vertical-align:middle; /*垂直居中对齐*/ vertical-align:text-top; /*文字垂直向上对齐*/ vertical-align:text-bottom; /*文字垂直向下对齐*/ 二、CSS边框空白padding-top:10px; /*上边框留空白*/padding-right:10px; /*右边框留空白*/ padding-bottom:10px; /*下边框留空白*/padding-left:10px; /*左边框留空白三、CSS符号属性:list-style-type:none; /*不编号*/list-style-type:decimal; /*阿拉伯数字*/list-style-type:lower-roman; /*小写罗马数字*/list-style-type:upper-roman; /*大写罗马数字*/list-style-type:lower-alpha; /*小写英文字母*/list-style-type:upper-alpha; /*大写英文字母*/list-style-type:disc; /*实心圆形符号*/list-style-type:circle; /*空心圆形符号*/list-style-type:square; /*实心方形符号*/list-style-image:url(/dot.gif); /*图片式符号*/list-style-position: outside; /*凸排*/list-style-position:inside; /*缩进*/四、CSS背景样式:background-color:#F5E2EC; /*背景颜色*/ background:transparent; /*透视背景*/background-image : url(/image/bg.gif); /*背景图片*/ background-attachment : fixed; /*浮水印固定背景*/ background-repeat : repeat; /*重复排列-网页默认*/ background-repeat : no-repeat; /*不重复排列*/ background-repeat : repeat-x; /*在x轴重复排列*/ background-repeat : repeat-y; /*在y轴重复排列*/指定背景位置background-position : 90% 90%; /*背景图片x与y轴的位置*/ background-position : top; /*向上对齐*/background-position : buttom; /*向下对齐*/ background-position : left; /*向左对齐*/background-position : right; /*向右对齐*/background-position : center; /*居中对齐*/五、CSS连接属性:a /*所有超链接*/a:link /*超链接文字格式*/a:visited /*浏览过的链接文字格式*/a:active /*按下链接的格式*/a:hover /*鼠标转到链接*/鼠标光标样式:链接手指CURSOR: hand十字体cursor:crosshair箭头朝下cursor:s-resize十字箭头cursor:move箭头朝右cursor:move加一问号cursor:help箭头朝左cursor:w-resize箭头朝上cursor:n-resize箭头朝右上cursor:ne-resize箭头朝左上cursor:nw-resize文字I型cursor:text箭头斜右下cursor:se-resize箭头斜左下cursor:sw-resize漏斗cursor:wait光标图案(IE6) p {cursor:url("光标文件名.cur"),text;} 六、CSS框线一览表:border-top : 1px solid #6699cc; /*上框线*/ border-bottom : 1px solid #6699cc; /*下框线*/ border-left : 1px solid #6699cc; /*左框线*/ border-right : 1px solid #6699cc; /*右框线*/以上是建议书写方式,但也可以使用常规的方式如下: border-top-color : #369 /*设置上框线top颜色*/ border-top-width :1px /*设置上框线top宽度*/ border-top-style : solid/*设置上框线top样式*/其他框线样式solid /*实线框*/dotted /*虚线框*/double /*双线框*/groove /*立体内凸框*/ridge /*立体浮雕框*/inset /*凹框*/outset /*凸框*/七、CSS表单运用:文字方块按钮复选框选择钮多行文字方块下拉式菜单选项1选项2八、CSS边界样式:margin-top:10px; /*上边界*/margin-right:10px; /*右边界值*/margin-bottom:10px; /*下边界值*/margin-left:10px; /*左边界值*/CSS 属性:字体样式(Font Style)序号中文说明标记语法1 字体样式{font:font-style font-variant font-weight font-sizefont-family}2 字体类型{font-family:"字体1","字体2","字体3",...}3 字体大小{font-size:数值|inherit| medium| large| larger| x-large|xx-large| small| smaller| x-small| xx-small}4 字体风格{font-style:inherit|italic|normal|oblique}5 字体粗细{font-weight:100-900|bold(粗体)|bolder(特粗)|lighter(细体)|normal(正常);}6 字体颜色{color:数值;}7 阴影颜色{text-shadow:16位色值}8 字体行高{line-height:数值|inherit|normal;}9 字间距{letter-spacing:数值|inherit|normal}10 单词间距{word-spacing:数值|inherit|normal}11 字体变形{font-variant:inherit|normal|small-cps }12 英文转换{text-transform:inherit|none|capitalize|uppercase|lowercase}13 字体变形{font-size-adjust:inherit|none}14 字体{font-stretch:condensed|expanded|extra-condensed|extra-expanded|inh erit|narrower|normal|semi-condensed|semi-expanded|ultra-condensed|ultra-expanded|wider} 文本样式(Text Style)序号中文说明标记语法1 行间距{line-height:数值|inherit|normal;}2 文本修饰{text-decoration:inherit|none|underline|overline|line-through|blink}3 段首空格{text-indent:数值|inherit}4 水平对齐{text-align:left|right|center|justify}5 垂直对齐{vertical-align:inherit|top|bottom|text-top|text-bottom|baseline|middle|s ub|super}6 书写方式{writing-mode:lr-tb|tb-rl}背景样式序号中文说明标记语法1 背景颜色{background-color:数值}2 背景图片{background-image: url(URL)|none}3 背景重复{background-repeat:inherit|no-repeat|repeat|repeat-x|repeat-y}4 背景固定{background-attachment:fixed|scroll}5 背景定位{background-position:数值|top|bottom|left|right|center}6 背影样式{background:背景颜色|背景图象|背景重复|背景附件|背景位置} 框架样式(Box Style)序号中文说明标记语法1 边界留白{margin:margin-top margin-right margin-bottommargin-left}2 补白{padding:padding-top padding-right padding-bottom padding-left}3 边框宽度{border-width:border-top-width border-right-width border-bottom-width border-left-width}宽度值:thin|medium|thick|数值4 边框颜色{border-color:数值数值数值数值} 数值:分别代表top、right、bottom、left颜色值5 边框风格{border-style:none|hidden|inherit|dashed|solid|double|inset|outset|ridge |groove}6 边框{border:border-width border-style color}上边框{border-top:border-top-width border-style color}右边框{border-right:border-right-width border-style color}下边框{border-bottom:border-bottom-width border-style color}左边框{border-left:border-left-width border-style color}7 宽度{width:长度|百分比| auto}8 高度{height:数值|auto}9 漂浮{float:left|right|none}10 清除{clear:none|left|right|both}分类列表序号中文说明标记语法1 控制显示{display:none|block|inline|list-item}2 控制空白{white-space:normal|pre|nowarp}3 符号列表{list-style-type:disc|circle|square|decimal|lower-roman|upper-roman|low er-alpha|upper-alpha|none}4 图形列表{list-style-image:URL}5 位置列表{list-style-position:inside|outside}6 目录列表{list-style:目录样式类型|目录样式位置|url}7 鼠标形状{cursor:hand|crosshair|text|wait|move|help|e-resize|nw-resize|w-resize|s-resize|se-resize|sw-resize}CSS属性大全[背景]属性共有六项:「背景颜色」(background-color),设置背景颜色。

相关文档
最新文档