Answers for "white space"

21

add space in html

<!-- vertical space -->
&nbsp;
&ensp;
&emsp;

<!--horizontal space -->
<br/>
Posted by: Guest on October-29-2020
3

what is whitespace

Whitespace is empty space (without any visual representation)
 on screen. Examples of whitespace characters include 
 space characters, tabs, and line break characters.
Posted by: Guest on April-02-2020
0

how to have white space in css

#HTML_code
<h1> 
	My text
	<span>
		Here my white space
	</span>
</h1>

#Css_Code
h1 span::before
{
  content: "\A";
  white-space:pre;
}
Posted by: Guest on December-05-2020

Browse Popular Code Answers by Language