Copyright © tutorialspoint.com

CSS - margin-bottom

previous next


Description:

The margin-bottom property sets the width of the margin on the bottom of an element.

Possible Values:

Applies to:

All the HTML elements

DOM Syntax:

object.style.marginBottom="5px"

Example:

Here is the example:

<p style="margin-bottom: 15px; border:1px solid black;">
This is a paragraph with a specified bottom margin
</p>

<p style="margin-bottom: 5%; border:1px solid black;">
This is another paragraph with a specified bottom margin in percent
</p>

This will produce following result:

This is a paragraph with a specified bottom margin

This is another paragraph with a specified bottom margin in percent

To Become more comfortable - Do Online Practice


previous next

Copyright © tutorialspoint.com