Answers for "bootstrap select box arrow not visible"

1

bootstrap select box arrow not visible

// bootstrap select box arrow not visible
// Solution - Add form-select class next to the form-control class 
// for B5 Version

<select class="form-control form-select">
    <option>Select Title</option>
    <option value="1">Title 1</option>
    <option value="2">Title 2</option>
</select>
Posted by: Guest on September-01-2021

Browse Popular Code Answers by Language