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 need to align the text to the left of radio button using float:left
input[type="radio"]{ float:left; }
You may use label too for more responsive output.