吴裕雄 Bootstrap 前端框架开发——Bootstrap 字体图标(Glyphicons):glyphicon glyphicon-step-forward...

迷南。 2021-11-05 10:40 503阅读 0赞
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
  7. </head>
  8. <body>
  9. <div class="container">
  10. <h2>Step-forward Glyph</h2>
  11. <p>Step-forward icon: <span class="glyphicon glyphicon-step-forward"></span></p>
  12. <p>Step-forward icon as a link:
  13. <a href="#">
  14. <span class="glyphicon glyphicon-step-forward"></span>
  15. </a>
  16. </p>
  17. <p>Step-forward icon on a button:
  18. <button type="button" class="btn btn-default btn-sm">
  19. <span class="glyphicon glyphicon-step-forward"></span> Step-forward
  20. </button>
  21. </p>
  22. <p>Step-forward icon on a styled link button:
  23. <a href="#" class="btn btn-info btn-lg">
  24. <span class="glyphicon glyphicon-step-forward"></span> Step-forward
  25. </a>
  26. </p>
  27. </div>
  28. <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
  29. <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
  30. </body>
  31. </html>

1020928-20190520125951087-908965884.png

转载于:https://www.cnblogs.com/tszr/p/10893587.html

发表评论

表情:
评论列表 (有 0 条评论,503人围观)

还没有评论,来说两句吧...

相关阅读