I have a form in IE where it starts a new line after /form. Is there any fix to this?
A:
Try a CSS reset file http://meyerweb.com/eric/tools/css/reset/
Or try to add this to the page
form {
margin: 0;
padding: 0;
border: 0;
outline: 0;
}
Edit
I noticed the newline disappeared when adding a doctype to the document.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
</html>
sshow
2010-05-17 22:27:36
That would work, but IE is picking up that it should start a new line for a /form
noryb009
2010-05-17 22:30:16
A:
I found if I used style="display: inline;"
, the line disappeared. Thank you!
noryb009
2010-05-17 23:01:59