How to add multiple spaces between html page text


Add multiple spaces between text in html

You must have noticed that when you type text in a div element or a paragraph or be it a span even if you add more than one space between the text it is rendered as just one! If you want to add more spaces between text in HTML page you need to make use of &nbsp if you want to have more spaces keep adding &nbsp followed by semicolons, example,      

Let's see some examples:

<div>Hey there!     I have added multiple spaces in my text yet    I see only one space between them!</div>
Output:
Hey there! I have added multiple spaces in my text yet I see only one space between them!
<div>Hey there! &nbsp;&nbsp;&nbsp;&nbsp; I have
 added multiple spaces in my text
 yet &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; I
 see only one space between them!</div>
Output:
Hey there!       I have added multiple spaces in my text yet       I see only one space between them!

Note: If you use pre tag, all text will be rendered as it is and the many spaces you add between the text will be displayed as is.

Example:
 This     text  is     wrapped    in  a <pre> tag! 


















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap