I have a issue with one of my spans. Please consider the following styles:
.form_container .col1che { float: left; width: 4%; text-align: left; } .form_c
Width is not honored because span is an inline element. To fix this, add:
display: inline-block;
Depending on your situation, display: inline-block may be better than display: block because any content after the span won't be forced onto a new line.
display: inline-block
display: block