css样式标签

背景

;引号结束

background-color:  ;  背景色,样式表里优先级高

background-image:(路径);  设置背景图片 在css里外部链接不用加双引号

background-attachment:fixed;   背景是固定的  不随字体的滚动所滚动

background-attachment:scroll;   背景随字体的滚动

background-repeat;    背景图片平铺(no-repeat.不平铺  repeat-x.横向平铺  repeat-y.纵向平铺)

background-position:center;   背景图片居中,设置背景图位置的时候,repeat必须是no-repeat(不平铺)

background-position:right top;背景图片放到右上角(方位可以改  左left  右right  上top  下bottom)

background-position:left  ***px  top  ***px ;  (离左边***像素  离上面***像素(可以设置为负数))

字体

font-family:"字体"

font-size:**px  字体大小

font-weight:bold;  bold是加粗normal是正常字体

font-style:italic;   倾斜

color:颜色;

text-decoration:underlyine  常用下划线  none是去掉下划线(比如超链接的下划线)

text-indent:center;   水平对齐(居中对齐)  left是左对齐  right 是右对齐

vertical-align:middle; (垂直对齐)居中对齐  top是顶部对齐  bottom是底部对齐 一般设置行高后使用

原文地址:https://www.cnblogs.com/zhushijun/p/6697435.html