I have input text\'s and label tags. I can\'t figure out the CSS to get the label text to align right below the input text. Here\'s a snippet of the HT
input
label
Use a table (one input/label pair per cell) or left-floating divs (one input/label pair per div). Example:
shabba …
CSS:
div.pair { float:left; }