how to style navbar toggler icon bootstrap 5

Solutions on MaxInterview for how to style navbar toggler icon bootstrap 5 by the best coders in the world

showing results for - "how to style navbar toggler icon bootstrap 5"
Giorgio
01 Jan 2018
1 <!--HTML-->
2 <button class="navbar-toggler custom-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
3    <span class="navbar-toggler-icon  "></span>
4 </button>
5 
6<!--STYLE-->
7<!--CHANGE THE STROKE COLOR-->
8.custom-toggler .navbar-toggler-icon {
9  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
10}
similar questions