This is a basic CSS question, I have a radio button with a small text label after it. I want the text to appear centered vertically but the text is always aligned with the b
You could also try something like this:
input[type="radio"] { margin-top: -1px; vertical-align: middle; }
Warm Cold