• 吴裕雄 Bootstrap 前端框架开发——Bootstrap 字体图标(Glyphicons):glyphicon glyphicon-align-center


    <!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>Align-center Glyph</h2>
                <p>Align-center icon: <span class="glyphicon glyphicon-align-center"></span></p>    
                <p>Align-center icon as a link:
                    <a href="#">
                        <span class="glyphicon glyphicon-align-center"></span>
                    </a>
                </p>
                <p>Align-center icon on a button:
                    <button type="button" class="btn btn-default btn-sm">
                        <span class="glyphicon glyphicon-align-center"></span> Align-center
                    </button>
                </p>
                <p>Align-center icon on a styled link button:
                    <a href="#" class="btn btn-info btn-lg">
                        <span class="glyphicon glyphicon-align-center"></span> Align-center
                    </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>

  • 相关阅读:
    Hdu 1257 最少拦截系统
    Hdu 1404 Digital Deletions
    Hdu 1079 Calendar Game
    Hdu 1158 Employment Planning(DP)
    Hdu 1116 Play on Words
    Hdu 1258 Sum It Up
    Hdu 1175 连连看(DFS)
    Hdu 3635 Dragon Balls (并查集)
    Hdu 1829 A Bug's Life
    Hdu 1181 变形课
  • 原文地址:https://www.cnblogs.com/tszr/p/10893502.html
Copyright © 2020-2023  润新知