Bootstrap

作者: Yanl__ | 来源:发表于2023-05-05 08:20 被阅读0次

    Bootstrap v4 图标库引用

    1.首先下载bootstrap-icons-1.10.5.zip

    2.在页面中引入

    //2.在页面中引入
    <link rel="stylesheet" href="{% static '/bootstrap-icons-1.10.5/font/bootstrap-icons.css' %}">
    

    3.推荐使用

    <i class="bi-alarm-clock"></i>
    这样可以使用 font-size 和 color 样式属性可以更改图标的外观。

    <button type="button" class="btn btn-primary">
      <i class="bi bi-star" style="font-size: 2rem; color: whitesmoke;"></i>
      <span style="font-size: 2rem; color: whitesmoke;">Button</span>
     </button>
    

    相关文章

      网友评论

          本文标题:Bootstrap

          本文链接:https://www.haomeiwen.com/subject/vfbfsdtx.html