Answers for "how to break line in html without br"

16

how to break the line in html

<p> I'm about to break the line <br> right there </p>
Posted by: Guest on June-24-2020
0

html without breakline

<!--Have some ways to do that

<nobr>-->
<td><nobr><i class="flag-bfh-ES"></i> +34 666 66 66 66</nobr></td>

<!-- nowrap-->
<td nowrap><i class="flag-bfh-ES"></i> +34 666 66 66 66</td>

<!--CSS-->
<style>
.nobr { white-space: nowrap }
</style>
...
<td class=nobr><i class="flag-bfh-ES"></i> +34 666 66 66 66</td>
Posted by: Guest on August-27-2021
0

html new line without <br

<pre>
Hello
Hello
</pre>
<pre> tag will print the content as it is.
<pre>

</pre>
It will will print a new line without <br> tag.
Posted by: Guest on April-08-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