Answers for "html how to not break line"

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
0

html prevent newline

<style>
.nobr { 
  white-space: nowrap; 
}
</style>
<!-- Or with Tailwindcss -->
<h2 class="whitespace-nowrap">.....</h2>
Posted by: Guest on January-06-2021

Browse Popular Code Answers by Language