+ 2
what's the functions of <br/> tag
4 odpowiedzi
+ 8
See this thread:
https://www.sololearn.com/Discuss/607325/?ref=app
+ 8
It is an inline element called "line break" to help you start a new line
+ 6
It is used to start a new line...
Example :
<div>Hello<br/>World </div>
output :
Hello
World
It creates a new line like this
+ 4
thanks