zoukankan      html  css  js  c++  java
  • 伪元素 字体图标

    <!DOCTYPE html>
    <html lang="en">

    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <style>
            @font-face {
                font-family: 'icomoon';
                src: url('fonts/icomoon.eot?cv013x');
                src: url('fonts/icomoon.eot?cv013x#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?cv013x') format('truetype'), url('fonts/icomoon.woff?cv013x') format('woff'), url('fonts/icomoon.svg?cv013x#icomoon') format('svg');
                font-weight: normal;
                font-style: normal;
            }
            
            span {
                font-family: 'icomoon';
                position: absolute;
                top: 10px;
                right: 10px;
            }
            
            div,
            p {
                position: relative;
                 249px;
                height: 35px;
                border: 1px solid red;
            }
            /* p::after {
                content: "";
                font-family: 'icomoon';
                position: absolute;
                top: 10px;
                right: 10px;
            } */
            
            p::after {
                content: "ea50";
                font-family: 'icomoon';
                position: absolute;
                top: 10px;
                right: 10px;
            }
        </style>
    </head>

    <body>
        <div>
            <span></span>
        </div>

        <p></p>

    </body>

    </html>
  • 相关阅读:
    MariaDB · 版本特性 · MariaDB 的 GTID 介绍
    stm8s 中断重复进入
    PCB积累
    链表的创建、增加、删除、改数据、遍历
    百度文库文字下载工具指引
    防倒灌的开关电路
    AD快速从原理图查找pcb中元件
    三目运算符填坑
    嵌入式结构化分层思想
    原码,反码,补码
  • 原文地址:https://www.cnblogs.com/ericblog1992/p/12933294.html
Copyright © 2011-2022 走看看