I assume by button, you are talking about the radio buttons?
You can target the element using an attribute selector, or give it a class and use that for the selector.
input[type="radio"] {
margin-right: 5px;
}
Indeed, that is what I mean. It worked and now realizing the logic. Thanks! Cheers.
1 Like