is there a possiblity to change the selection color in a box? I can only find answears how to change the color on hover, but i want to change the background-color of all selected items.
i tried this selectors:
option[selected]{
background-color: red;
}
option:checked{
background-color: red;
}
but i had no luck