其他分享
首页 > 其他分享> > 购物车图标案例-第二十天

购物车图标案例-第二十天

作者:互联网

上传矢量图:

使用字体图标技巧实现网页中简洁的图标效果

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>购物车图标</title>
    <link rel="stylesheet" href="./iconfont/iconfont.css">
    <style>
        a{
            display: block;
            width: 200px;
            height: 50px;
            box-shadow: 0px 2px 12px 2px rgb(0 0 0 / 30%);
            text-align: center;
            line-height: 50px;
            color: #333;
            text-decoration: none;
        }
        .icon1{
            color: #ff4403;
        }
    </style>
</head>
<body>
    <a href="#">
        <i class="iconfont icon-gouwu"></i>
        购物车
        <i class="iconfont icon-jiantouyou"></i>
    </a>
</body>
</html>

标签:矢量图,十天,text,购物车,color,上传,图标
来源: https://www.cnblogs.com/cm666/p/16163671.html