+ 3
What is <br /> tag
6 Antworten
+ 10
<br /> is a line break. it separated a code that showed in same line to a different line.
just added an explain to @_Retr0/- answer
+ 6
its line break tag for example :
⏩this is a line without line break tag
//output :
⏩this is a line without line break tag
now <br /> tag example:
⏩line with a <br />line break tag
//output :
⏩line with a
line break tag
+ 2
it also gets us to new line
+ 2
yup that's what it is
+ 2
<br /> tag is used for single line breaks. Don 't use it to create paragraphs, however, use <p></p> in stead.
+ 2
i advice u don't use it to creat new line for that we have the inblock tags like <p></p>.
<br/> tag is reserved for the line break.