CSS-1

截屏2022-08-06 21.33.43.png

text-align:center 内容居中。
margin:0 auto; 一般是用来修饰外部的div。

1.选择器分为,标签选择器,类选择器,id选择器,通配符选择器

文字的加粗,文字的大小,文字的倾斜,文字的样式,文本的缩近,
文本内容水平对齐,文本修饰线,

  
  
 
      
 
 

颜色

       .red {
            color: red;
        }

        .blue {
            color: blue;
        }

        #yel {
            color: yellow;
        }

        .size {
            font-size: 20px;
            /* 字号 加px  默认的字号是16px */
        }

        .weight {
            font-weight: 700;
            /* bold = 700 默认是400不加粗*/
        }

        .em {
            font-style: italic;
            /* 倾斜 */
        }

        .fontStyle {
            font-family: 微软雅黑, 黑体, sans-serif;
            /* 电脑中依次向后找,如果没有微软雅黑,就 */
        }

        * {
            margin: 0;
            padding: 0;
            color: yellowgreen;
        }

        .r {
            font: italic 700 30px 宋体;
            /* 复合属性 只能省略前两个 */
            font-style: normal;
        }

        .indent {
            text-indent: 2em;
        }

2.行高

        .textIndent {
            text-indent: 2em;
            /* line-height: 20px; */ 
            /* 可以填写倍数和填写像素大小 */
            /* font: normal 700 20px/1.5 黑体; */
            color: #333333;
            background-color: rgba(0, 255, 0, 0.3);
        }

3. margin: 0 auto;

4.text-align:center 内容居中

      .title {
            color: black;
            /* font-size: 20px; */
            text-align: center;
            font: normal 400 20px 黑体;
        }
        body {
            text-align: center;
        }

5.text-decoration:文本的修饰线




    Document
    


    
    我是链接标签
    

我是h1标签

我是div标签

我是p标签

6.demo1

截屏2022-08-06 22.01.26.png




    
    
    
    Document
    



    

南海战略态势感知:美军“里根”号航母已转向

2022-08-06 15:29 收藏


【里根号航母已转向】8月6日中午,根据“里根”号航母舰载机“灰狗”C-2A的飞行轨迹判断, “罗纳德·里根”航母打击群已于5日开始折返。与5日上午相比,至6日中午,其已向西南方向移动了约230海里。

7.demo2

截屏2022-08-06 21.48.29.png



    
    
    
    Document
    


    

电脑

专业影响

5999元起

你可能感兴趣的:(CSS-1)