Answers for "how to not break a line in html"

1

line break not working html

<p>If the line break is no working.<span>Then try using span and give it a block display like given below</span></p>


<!---CSS--->
span {
  display: block;
}

<!-- or otherwise use padding or margin -->
Posted by: Guest on July-14-2021
1

how to do a line break in html

<p>To force<br> line breaks<br> in a text,<br> use the br<br> element.</p>
Posted by: Guest on February-24-2020

Browse Popular Code Answers by Language