I'm writing some code and want to have some space between two inputs and <br />
is not working in Firefox:
<input type="text" id="X_Axis" /><br />
<input type="text" id="Y_Axis" />
None of <br />
, <br/>
, </br>
work.
P.S. I haven't tried it in any other browser, so it might not be Firefox, as I suppose.
`. See here: http://stackoverflow.com/questions/1946426/html-5-is-it-br-br-or-br – Jonathan M May 08 '12 at 14:27
` is valid in HTML-Doctypes, whereas xHTML-Tags always have to be closed where `
` is correct. – Benedikt Wölk May 08 '12 at 14:31
s will not work on Firefox. – Aaron Liu Jun 30 '16 at 21:05