zoukankan      html  css  js  c++  java
  • 前端学习 -- Css -- 伪元素

    1. :first-letter 表示第一个字符
    2. :first-line 表示文字的第一行
    3. :before 选中元素的最前边,一般该伪类都会结合content一起使用,通过content可以向指定位置添加内容。
    4. :after 选中元素的最后边,一般该伪类都会结合content一起使用,通过content可以向指定位置添加内容。

    first-letter demo:

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <title></title>
            <style type="text/css">
                /*:first-letter 表示第一个字符*/
                p:first-letter{
                    color: red;
                    font-size: x-large;
                }
            </style>
        </head>
        <body>
            <p>
                不知道喜欢你什么,实在不知道,如果确定知道喜欢你什么,是不够喜欢你。因为不确定具体喜欢你什么,所以喜欢你所有一切及其他。
            </p>
        </body>
    </html>

    效果:

    first-line demo:

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <title></title>
            <style type="text/css">
                /*:first-line 表示文字的第一行*/
                p:first-line{
                    color: red;
                    font-size: x-large;
                }
            </style>
        </head>
        <body>
            <p>
            我们是世人最好的朋友,我们是世人最差的情人,我们彼此相爱,就是为民除害。
            </p>
        </body>
    </html>

    效果图:

    :before :after demo:

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <title></title>
            <style type="text/css">
                /*:first-line 表示文字的第一行*/
                p:before{
                    content: "嘻嘻:";
                    color: red;
                    font-size: x-large;
                }
                P:after{
                    content: "哈哈";
                    color: green;
                    font-size: x-large;
                }
            </style>
        </head>
        <body>
            <p>
            我们是世人最好的朋友,我们是世人最差的情人,我们彼此相爱,就是为民除害。
            </p>
        </body>
    </html>

    效果:

  • 相关阅读:
    pdf文件的导入导出
    扩展方法用法整理
    c#批量插入数据库Demo
    Linq表达式和Lambda表达式用法对比
    Lambda表达式的诞生过程
    LeetCode77. Combinations(剑指offer38-2)
    LeetCode47.Permutations II(剑指offer38-1)
    LeetCode567. Permutation in String
    LeetCode46. Permutations
    图解HTTP-1.web和网络基础
  • 原文地址:https://www.cnblogs.com/androidsuperman/p/6575942.html
Copyright © 2011-2022 走看看