padding-block-end property
The padding-block-end property specifies
the end padding of an element along
the block (vertical) axis.
Syntax
selector {
padding-block-end: size;
}
Example
Let's set the block-axis ending padding
of the child element to 20px:
<div>
<p>text</p>
</div>
div {
width: 400px;
height: 200px;
border: 1px solid black;
}
p {
padding-block-end: 20px;
width: 100px;
height: 50px;
border: 1px solid red;
}
:
Example
Now let's set the end padding of the
child element on the block axis
to 20%:
<div>
<p>text</p>
</div>
div {
width: 400px;
height: 200px;
border: 1px solid black;
}
p {
padding-block-end: 20%;
width: 100px;
height: 50px;
border: 1px solid red;
}
:
See also
-
the
padding-block-startproperty
that specifies the start padding of an element along the block axis -
the
padding-inline-endproperty
that specifies the end padding of an element along the inline axis -
the
padding-inline-startproperty
that specifies the start padding of an element along the inline axis -
the
paddingproperty
that sets a padding -
the
margin-bottomproperty
that sets a bottom margin -
the
margin-leftproperty
that sets a left margin -
the
margin-rightproperty
that sets a right margin -
the
marginproperty
that is a shorthand for a margin