• CSS3---4.伪元素选择器


    a)重点:E::before、E::after
    i.是一个行内元素,需要转换成块:display:block   float:**  position:
    ii.必须添加content,哪怕不设置内容,也需要content:””
    iii.E:after、E:before 在旧版本里是伪类,在新版本里是伪元素,新版本下E:after、E:before会被自动识别为E::after、E::before,按伪元素来对待,这样做的目的是用来做兼容处理
    iv.E::before: 定义在一个元素的内容之前插入content属性定义的内容与样式
    v.E::after: 定义在一个元素的内容之后插入content属性定义的内容与样式
    vi.注意:
    1.IE6、IE7与IE8(怪异模式Quirks mode)不支持此伪元素
    2.CSS2中 E:before或者E:after,是属于伪类的,并且没有伪元素的概念,CSS3中 提出伪元素的概念 E::before和E::after,并且归属到了伪元素当中,伪类里就不再存在E:before或者   E:after伪类
    b)E::first-letter文本的第一个字母或字(不是词组)
    c)E::first-line 文本第一行
    d)E::selection 可改变选中文本的样式
    
    <style>
        *{
            padding: 0;
            margin: 0;
        }
        body{
            padding: 200px;
        }
        div{
            
            height: 200px;
            float: left;
        }
        div:nth-of-type(1){
             300px;
            background-color: yellowgreen;
        }
        div:nth-of-type(2){
             150px;
            background-color: skyblue;
            position: relative;
        }
        div:nth-of-type(2)::before,div:nth-of-type(2)::after{
            position: absolute;
            content: "";
             40px;
            height: 40px;
            border-radius: 50%;
            background-color: #fff;
    
        }
        div:nth-of-type(2)::before{
            left: -20px;
            top:-20px;
        }
        div:nth-of-type(2)::after{
            left: -20px;
            bottom:-20px;
        }
    </style>
    <body>
        <div></div>
        <div></div>
    </body>
    
    

    浏览器渲染如下:

  • 相关阅读:
    windows(win10)下的mysql解压版安装
    微信和QQ网页授权登录
    图片前端重绘前端压缩和自动调整旋转
    时间的显示
    magento中文语言包的使用
    div垂直居中(js)
    centOS IP能ping通但是域名ping不通
    python3 使用pyinstaller打包exe 指定虚拟路径模块
    Flask 多app案例
    将excel的资产数据生成二维码图片
  • 原文地址:https://www.cnblogs.com/Tobenew/p/10524953.html
Copyright © 2020-2023  润新知