zoukankan      html  css  js  c++  java
  • 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;

  • 相关阅读:
    说说 Java 线程间通信
    Java 内存模型与内存结构
    Spring Boot 整合 Shiro
    HashMap 实现原理
    Spring Boot 自动配置原理
    Spring Cloud 全链路追踪实现
    JVM 类加载机制
    volatile 关键字的作用
    Spring Boot 整合 Redis
    Docker命令
  • 原文地址:https://www.cnblogs.com/fairy-0518/p/6420013.html
Copyright © 2011-2022 走看看