- 1、本文档共23页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
CSS样式属性
1、字体属性(type)
font-family(使用什么字体)
font-style(字体的样式,是否斜体):normal/italic/oblique
font-variant(字体大小写):normal/small-caps
font-weight(字体的粗细):normal/bold/bolder/lithter
font-size(字体的大小):absolute-size/relative-size/length/percentage
?
2、颜色和背景属性(backgroud)
color(定义前景色,例如:p{color:red})
background-color(定义背景色)
background-image(定义背景图片)
background-repeat(背景图案重复方式):repeat-x/repeat-y/no-repeat
background-attachment(设置滚动):scroll(滚动)/fixe(固定的)
background-position(背景图案的初始位置):percentage/length/top/left/right/bottom
?
3、文本属性:(block)
定义间距:
word-spacing(单词之间的距离)
letter-spacing(字母之间的距离)
text-decoration(定义文字的装饰):nore/underline/overline/line-through/blink
vertical-align(元素在垂直方向的位置):baseline(基线)/sub/super/top/text-top/middle/bottom/text-bottom
text-transform(使文本转换为其它方式):capitalize(大写)/uppercase(首字母大写)/lowercase(小写)/none
text-align(文字的对齐):left/right/center/justify
text-indent(文本的首行缩进)length/percentage
line-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/nowrap
list-style-type(在列表前加项目符号)disc(圆点)/circle(圈)/square(方形)
/decimal(阿拉伯数字)/lower-roman(小写罗马数字)/upper-roman(大写罗马数字)/lower-alpha(小写英文字母)/upper-alpha(大写英文字母)/nore
list-style-tyle(在列表前加图案):url/none
list-style-position(决定列表项中第二行的起邕位置)
list-style(一次性定
文档评论(0)