Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 CSS中调整引导图标的大小?图标是 SVG。我在 HTML 中添加图标,而不是通过 CSS。
更改字体大小为我解决它:
<i class='bi bi-search' style='font-size:26px;'></i>
您可以创建自己的 css 类:
svg.bi.bi-icon-sm { height: 8px !important; width: 8px !important; } ... svg.bi.bi-icon-xl { height: 32px !important; width: 32px !important; }