背景图片重复 background-repeat:no-repeat/ repeat/ repeat-x /repeat-y/ round space inherit !important;/*背景重复*/
background-attachment: fixed local scroll inherit !important;
/*背景关联scroll 默认值。背景图像会随着页面其余部分的滚动而移动。
fixed 当页面的其余部分滚动时,背景图像不会移动。
inherit 规定应该从父元素继承 background-attachment 属性的设置。
background-orgin:显示
background-clip:裁剪
background-size:背景图与div保持一样的高和宽
background-position:设置背景图的位置
background-image:背景图
background-color:上 右 下 左 (颜色可以自定义)
text-indent 还可以设置为负值。利用这种技术,可以实现很多有趣的效果,比如“悬挂缩进”,即第一行悬挂在元素中余下部分的左边:
p {text-indent: -5em;}
不过在为 text-indent 设置负值时要当心,如果对一个段落设置了负值,那么首行的某些文本可能会超出浏览器窗口的左边界。为了避免出现这种显示问题,建议针对负缩进再设置一个外边距或一些内边距:
p {text-indent: -5em; padding-left: 5em;}text-decoration:blink line-through none overline underline;
/*文本的修饰 下划线 闪烁 删除线 上划线*/
outline{/*轮廓*/
outline:;/*合并*/
outline-color:red;/*颜色*/
outline-offset:;/*偏移*/
outline-style:;/*样式*/
outline-width:;/*宽度*/
}
ul li{
line-height:normal;
line-stacking:;/**/
list-style:;/*简写属性。用于把所有用于列表的属性设置于一个声明中。*/
list-style-type: armenian circle cjk-ideographic decimal decimal-leading-zero disc georgian georgian hebrew hiragana hiragana-iroha katakana square;/*列表项的标志类型*/
list-style-position:inside outside;/*位置*/}
table{
table-layout:fixed auto;/*显示表格*/
border-collapse: separate;
empty-cells: show hide;/*显示空白单元格*/
border-collapse:collapse separate;/*合并边框*/
border-spacing:;/*调整间距*/
}