标签:rstp 模式 图片 背景图 ali pos red style 顺序
.firstp {
/* 文字排版:颜色、字号、字体、粗体、斜体、下划线、删除线 */
color: #666; /*颜色*/
font-size: 30px; /*字号*/
font-family: "宋体"; /*字体*/
font-weight: bold; /*粗体*/
font-style: italic; /*斜体*/
text-decoration: underline; /*下划线 删除线用:line-through*/
/* 段落排版:缩进、行高、文字距离、单词间距、对齐 */
text-indent: 2em; /* 缩进 */
line-height: 1.5em; /* 行高 */
letter-spacing: 5px; /* 中文字距离 || 字母间距 */
word-spacing: 50px; /* 单词间距 */
text-align: center; /* 对齐:居中:center、左对齐:left、右对齐:right */
/* 背景设置:背景色、背景图片、背景平铺模式、背景定位 */
background-color: #333; /* 背景色*/
background-image: url(img/bg.png); /* 背景图片 */
background-repeat: no-repeat; /* 背景平铺模式: 不重复 */
background-position: 30% 20px; /* 背景定位 */
}
.cont {color: red}
.cont {color: rgb(51, 102, 102)}
这三个值也可以用0%~100%之间的值来设置
.cont {color: rgb(10%, 30%, 66%)}
.cont {color: #0033ff}
.cont {color: #333333}
可以缩写成:
.cont {color: #333}
.cont {color: #aa3366}
可以缩写成:
.cont {color: #a36}
.cont {font: bold italic small-caps 18px/1.5em "宋体"}
上面的缩写顺序为:
.con {
font-weight: bold;
font-style: italic;
font-variant: small-caps;
font-size: 18px;
line-height: 1.5em;
font-family: "宋体";
}
该缩写顺序的先后为:
.con {background: #333 url(img/bg.png) no-repeat 30% 20px;}
该缩写顺序为:
.con {
background-color: #333; /* 背景色*/
background-image: url(img/bg.png); /* 背景图片 */
background-repeat: no-repeat; /* 背景平铺模式: 不重复 */
background-position: 30% 20px; /* 背景定位 */
}
标签:rstp 模式 图片 背景图 ali pos red style 顺序
原文地址:https://www.cnblogs.com/dyfblogs/p/11397412.html