Home > Web Front-end > CSS Tutorial > What does margin-bottom mean?

What does margin-bottom mean?

不言
Release: 2022-03-31 18:45:02
Original
36432 people have browsed it

margin-bottom is a property in CSS that is used to set the bottom margin of an element. All major browsers support the margin-bottom property. Let's take a brief look at the usage of the margin-bottom attribute.

What does margin-bottom mean?

The syntax of the margin-bottom attribute is as follows:

margin-bottom:value
Copy after login

value Possible values:

  • auto: The browser calculates the lower margins.

  • length: Specifies the bottom margin value in specific units, such as pixels, centimeters, etc. The default value is 0px.

  • %: Specifies the bottom margin based on a percentage of the width of the parent element.

  • inherit: Specifies that the margins should be inherited from the parent element.

Let’s take a look at the margin-bottom code example

<html>
<head>
<style type="text/css">
p.bottommargin {margin-bottom: 2cm}
</style>
</head>

<body>
<p>这个段落没有指定外边距。</p>
<p class="bottommargin">这个段落带有指定的下外边距。</p>
<p>这个段落没有指定外边距。</p>
</body>

</html>
Copy after login

The running results are as follows:

What does margin-bottom mean?

Related recommendations :What does margin-top mean?

This article has ended here. For more exciting content, you can pay attention to the CSS Video Tutorial column on the PHP Chinese website! ! !

The above is the detailed content of What does margin-bottom mean?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template