css设置

css控制段落:段落缩进:text-indent;

      文字居中:text-align:center;

      文字从右向左显示:text-align:right;

      文字下划线:text-decoration:underline;

      文字上划线:text-decoration:overline;

      文字删除:text-decoratioin:line-through;

      字符间距:letter-spacing;

css字体设置技巧:字体颜色:color;

        字体斜体:font-style:italic((斜体);默认为nomal;

        字体粗体:font-weight:bold;

        字体大小:font-size;

        行高:line-height:

        字体:font-family;

        字体设置可以在一行,但是有顺序:font:font-style font-weight font-size line-height font-family;

css背景:颜色设置:background-color;

    图片设置:background-image:url();

    图片重复:background-repeat:repeat-y(竖向重复),repaeat-x(横向重复),no-repeat(不重复);

    图片位置:bckground-postion;

    背景图片可以 写在一行,但是有顺序:background:background-color background-image background-repeat background-position;

原文地址:https://www.cnblogs.com/fairy-0518/p/6420013.html