What is the fullform and use of <br/> | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the fullform and use of <br/>

9th Nov 2016, 4:06 PM
Vishal Dubey
Vishal Dubey - avatar
4 Answers
+ 4
<br/> means break,it gives new line to your output
9th Nov 2016, 4:23 PM
Dandi Wiratsangka
Dandi Wiratsangka - avatar
+ 2
Usage: As Dandi mentioned above Br is used to create a line break. Create a paragraph with a long text in it, and pkace the line braker to the end of the word where youre planing to create the new line. <p>quick brown fox <br>jumps over ...</p> the above will output: quick brown fox jumps over ... Full form: Depending on the HTML document type you may need to use <br>, <br/> or <br />. For HTML-5 it's enough if you use the first one.
9th Nov 2016, 4:46 PM
Attila Antal
Attila Antal - avatar
+ 1
<br/> is a tag to create new line. when you need to break line and start from a new line then you can use <br/> tag.
10th Nov 2016, 6:23 AM
Md. Sholyman Ali
Md. Sholyman Ali - avatar
0
It is used to terminate a line or to move next line. Eg: echo"hai";<br/> //space between hai and ram <br/> is used. echo""ram";
3rd Jan 2017, 2:35 PM
RAJARAM M
RAJARAM M - avatar