Reputation: 42185
suppose I have a checkbox, e.g.
<input type="checkbox">1</input>
It's going to appear like this:
Is it possible for me to get it to appear on the left of the text box, e.g.:
What do I need to do?
Upvotes: 0
Views: 168
Reputation:
As far as I know, you can't put the number on the left side the way you are trying to do it, but one could do it this way:
<label>1</label><input type="checkbox"></input>
Upvotes: 0