What is the attribute name for setting margins in css

青灯夜游
Release: 2023-01-03 09:25:17
Original
7579 people have browsed it

Attribute name: 1. margin, set all outer margins of the element; 2. margin-bottom, set the bottom margin of the element; 3. margin-left, set the left margin of the element; 4. margin-right, Set the right margin of the element; 5. margin-top, set the top margin of the element.

What is the attribute name for setting margins in css

The operating environment of this tutorial: Windows 7 system, CSS3 version, Dell G3 computer.

css margin properties

  • margin: Set all margin properties in one statement

  • margin-bottom: Set the bottom margin of the element

  • margin-left: Set the left margin of the element

  • margin-right: Set The right margin of the element

  • margin-top: Set the top margin of the element

css margin property

The margin shorthand property sets all margin properties in one declaration. This attribute can have 1 to 4 values.

[Recommended tutorial:CSS video tutorial]

Example:

margin:10px 5px 15px 20px;
Copy after login
  • The top margin is 10px

  • The right margin is 5px

  • The bottom margin is 15px

  • The left margin is 20px

margin:10px 5px 15px;
Copy after login
  • The top margin is 10px

  • The right and left margins are 5px

  • The bottom margin is 15px

margin:10px 5px;
Copy after login
  • The top and bottom margins are 10px

  • The right and left margins are 5px

margin:10px;
Copy after login
  • All four margins are 10px

Example:

     

一个没有指定边距大小的段落。

一个指定边距大小的段落。

一个没有指定边距大小的段落。

Copy after login

What is the attribute name for setting margins in css

For more programming-related knowledge, please visit:Programming Video! !

The above is the detailed content of What is the attribute name for setting margins in css. 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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!