0
As the previous photo shows, I would like to style that spot that is marked in red.
I’ve already put the following code:
select option {
background-color: white;
border: 1px dashed red;
}
The background-color
worked, but the attribute border
did not work and several other attributes also did not work.
I’d like to style one <select>
in a similar way to the <select class="selectpicker">
Bootstrap, but the attributes I put are not recognized (it seems). Would anyone know why they are not working/being recognized?
Thank you!