The padding-left property
The padding-left
property sets a
left padding of an element. The property
value is any
size units.
Syntax
selector {
padding-left: value;
}
Example
Let's make the 30px
left padding:
<div id="elem">
some text...
</div>
#elem {
padding-left: 30px;
width: 300px;
border: 1px solid black;
text-align: justify;
}
:
See also
-
the
padding-top
property
that sets a top padding -
the
padding-bottom
property
that sets a bottom padding -
the
padding-right
property
that sets a right padding -
the
padding
property
that is a shorthand for a padding -
the
margin
property
that sets a margin