Answers for "html spaces in text"

0

html spaces

    <b>How to insert spaces/tabs in text using HTML/CSS?</b>
      
    <p>This is a &nbsp; regular space.</p>
    <p>This is a &ensp; two spaces gap.</p>
    <p>This is a &emsp; four spaces gap.</p>
Posted by: Guest on August-28-2021
0

how to add spaces between text in html

p {
  white-space: pre;
}
Posted by: Guest on December-08-2020

Browse Popular Code Answers by Language