Answers for "html without breakline"

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

Browse Popular Code Answers by Language