Well, I'm curious about the nature of Radio groups and drop-down lists in HTML. I found that the radio buttons are complex in style, but I would like to style my elements for the required fields. I asked the previous question about setting the radio buttons and set the border color as you can with text fields, for example:
<input type="text" style="border-color:#FF0000">
<input type="radio" style="border-color:#FF0000">
Applying a style to a switch to change the color of the frame does not work.
My question is: is there a reason why I should not use the drop-down list in the radio group?
source
share