Akos
Akos

Reputation: 2007

Does a line break apply after a form in all browsers?

Nothing really to add to the title...

I tried it in Chrome and FF, but not in IE. Does line break apply after a form in ALL BROWSERS?

Upvotes: 0

Views: 311

Answers (2)

Tristan
Tristan

Reputation: 9111

You will always have a "line break" since <form> is a block element.

You can get rid of the line break, and the blank line using CSS :

To prevent just the "empty line", you could use

form { 
  margin: 0px;
}

To prevent both the "empty line" and the line break, you could use

form {
  display: inline;
}

Upvotes: 3

Jivago
Jivago

Reputation: 826

No, but I know certain version of IE do it.

My fix

<style type="text/css">
form {
   display: inline;
   margin: 0px;
}
</style>

Upvotes: 1

Related Questions