which tag is used for non breaking space in html?
Answers
Answered by
1
In order to create a non breaking space between 2 words in HTML, we can use :
For example if you need 2 or more spaces between two words you can use it as follows:
<p>Hello world!</p>
The above example will show the following output:
Hello world!
That is the number of spaces you want you have to type those number of times.
- gives one space.
- gives two spaces.
Hope this helps.
Similar questions