css小图标

https://css-tricks.com/snippets/html/glyphs/


<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>title>
    <style>
        div {
            font-size: 30px;
        }
        div:first-child:after {
            content: "\D7";
        }
        div:nth-child(2):after {
            content: "\2660";
        }
        div:nth-child(3):after {
            content: "\2661";
        }
        div:nth-child(4):after {
            content: "\2663";
        }
        div:nth-child(5):after {
            content: "\2664";
        }
        div:nth-child(6):after {
            content: "\2665";
        }
        div:nth-child(7):after {
            content: "\2666";
        }
        div:nth-child(8):after {
            content: "\2667";
        }
        div:nth-child(9):after {
            content: "\2668";
        }
    style>
head>
<body>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
    <div>div>
body>
<script>
script>
html>

你可能感兴趣的:(基础)