I\'m writing a web service, and I want to return the data as XHTML. Because it\'s data, not markup, I want to keep it very clean - no extra s or
s or
The CSS clear element is probably what you are looking for the get linebreaks. Something along:
#login form input { clear: both; }
will make sure the no other floating elements are left to either side of you input fields.
Reference