0
Why we always use the br element in html after the input element line like <input type="text><br />
2 Réponses
+ 1
br => Break line.
Check output for this..
<body>
Hello world
&
hello <br> world
</body>
0
br tag is used to break the line,
If not using CSS, we may want to display input fields in new lines,
So we use br tag, it's not mandatory..
for such purposes we should use CSS