+ 1
How can I add line Break after table (br tag not working)???!
I made a table and then wrote something after table in html.I want to add line break after table but the <br> tag is not working What should I do ??
9 Respuestas
+ 4
Add this to your table CSS:
table {
margin-bottom: 10px;
}
+ 2
You mean <hr/> for the line break.
edit: I mean horizontal line. 😅
<br/> is for spacing
+ 1
Paste the code in the playground and link it here.
+ 1
hr is for horizontal line and br for line break
0
No
0
Ok
0
Ok
0
Let me try