Resize SVG bootstrap icon

9.6k Views Asked by At

Is it possible to resize a bootstrap icon in CSS? The icons are SVG. I am adding the icon in HTML, not via CSS.

3

There are 3 best solutions below

0
On

Changing the font-size solve it for me:

<i class='bi bi-search' style='font-size:26px;'></i>
0
On

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
On

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>