Answers for "space from left in html"

152

html space

<!-- Create space in HTMl -->
&nbsp;

<!-- Example: -->
<p> Hello &nbsp; World! </p>
Posted by: Guest on February-19-2021
0

padding left

.yourClass {
  padding-left: 50px; // or
  padding-left: 1%; // to scale it in relation to its parent
}
Posted by: Guest on July-04-2020

Browse Popular Code Answers by Language