• css文本样式


    1、

    body{
        color:aqua;  /*可继承的颜色*/
        text-align: center; /*文本对齐方式*/
        
    }

    2、缩进:

    index.html

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Insert title here</title>
         <link href="style2.css" type="text/css" rel="stylesheet">
    </head>
    <body>
          
          <div>
            <h1>静夜思</h1>
            <p>床前明月光,</p>
            <p>床前明月光。</p>
            <p>床前明月光,</p>
            <p>床前明月光。</p>
          </div>
        
    </body>
    </html>


     

    没有缩进的效果:

    加上css样式:

    h6{
        text-indent: 2em;/*首行缩进2个像素*/
    }

    效果:

    1 h6{
    2     text-indent: -2em;/*首行退2个像素*/
    3     padding-left: 2em
    4 }
    5 p{
    6     padding-left: 2em
    7 }

    效果:

    3、大小写:

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Insert title here</title>
         <link href="style2.css" type="text/css" rel="stylesheet">
    </head>
    <body>
          
          <p id="p1">this Is my web page</p>
          <p id="p2">this Is my Web page</p>
          <p id="p3">this Is my web page</p>
    </body>
    </html>

    css:

    1 #p1{
    2     text-transform: capitalize;/*每个单词的第一个字母变为大写*/
    3 }
    4 #p2{
    5     text-transform: lowercase;/*所有变为小写*/
    6 }
    7 #p3{
    8     text-transform: uppercase;/*所有变为大写*/
    9 }

    效果:

    4、设置阴影效果:

    p{
        text-shadow: 5px 5px 1px #FF0000;/*设置背景,参数分别为:距左 距上 清晰度 背景颜色*/
    }

    效果:

    5、测试自动换行:

    原来效果:

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Insert title here</title>
         <link href="style2.css" type="text/css" rel="stylesheet">
    </head>
    <body>
          
          <p>测试阴影效果测试阴影效果测试阴影效果测试阴影效果测试阴影效果测试阴影效果测试阴影效果测试阴影效果</p>
          
    </body>
    </html>

    加入css:

    p{
        100px;
        text-wrap:normal;/*换行:正常,100px*/
    }

    效果:

  • 相关阅读:
    记录排序算法
    Redis 记录
    ELK Windows环境 强行记录
    前端组件 bootstrap-select 下拉 多选 搜索
    记一次微信点赞小网站的事故
    来自加班的吐槽
    .net 比较器
    做一个.net core 小项目 遇到的一些坑
    即使通讯架构
    resultMap 映射
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/5748795.html
Copyright © 2020-2023  润新知