zoukankan      html  css  js  c++  java
  • 吴裕雄 Bootstrap 前端框架开发——Bootstrap 字体图标(Glyphicons):glyphicon glyphicon-star-empty

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8">
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
        </head>
    
        <body>
            <div class="container">
                <h2>Star-empty Glyph</h2>
                <p>Star-empty icon: <span class="glyphicon glyphicon-star-empty"></span></p>    
                <p>Star-empty icon as a link:
                    <a href="#">
                        <span class="glyphicon glyphicon-star-empty"></span>
                    </a>
                </p>
                <p>Star-empty icon on a button:
                    <button type="button" class="btn btn-default btn-sm">
                        <span class="glyphicon glyphicon-star-empty"></span> Star-empty
                    </button>
                </p>
                <p>Star-empty icon on a styled link button:
                    <a href="#" class="btn btn-info btn-lg">
                        <span class="glyphicon glyphicon-star-empty"></span> Star-empty
                    </a>
                </p> 
            </div>
    
            <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
            <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
        </body>
    
    </html>

  • 相关阅读:
    TestNG+maven+idea 环境基本使用
    linux基本命令
    linux -查看cpu 内存 磁盘 端口 进程
    Scanner类、Random类、ArrayList 类
    (四)面向对象
    (三)数组
    (二)流程-循环
    (一)java基础_常量+变量+数据类型+运算符+方法
    SQL (二)
    SQL(一)
  • 原文地址:https://www.cnblogs.com/tszr/p/10893208.html
Copyright © 2011-2022 走看看