Is it possible to resize a bootstrap icon in CSS? The icons are SVG. I am adding the icon in HTML, not via CSS.
Resize SVG bootstrap icon
9.7k Views Asked by rigyt At
3
There are 3 best solutions below
0

You can create your own css class:
svg.bi.bi-icon-sm {
height: 8px !important;
width: 8px !important;
}
...
svg.bi.bi-icon-xl {
height: 32px !important;
width: 32px !important;
}
0

It is possible to use the bootstrap predefined font sizes https://getbootstrap.com/docs/5.2/utilities/text/#font-size
E.g.:
<span class="bi bi-box-arrow-right fs-3"></span>
Changing the font-size solve it for me: