Number of parameters in the padding attribute

Source: Internet
Author: User
It is always confusing to define the number of parameters in the padding attribute in CSS. For example:
Body {padding: 36px ;}
Body {padding: 36px 24px ;}
Body {padding: 36px 24px 18px ;}
Body {padding: 36px 24px 18px 12px ;}

today, I checked the standard CSS documentation, which stipulates that:
if only one, it is used for all four edges.
If two edges are provided, the first is used for top-bottom, and the second is used for left-right.
if three edges are provided, the first is used for top, the second is used for left-right, and the third is used for bottom.
if all four parameter values are provided, the top-right-bottom-left order is applied to the four sides.
body {padding: 36px;} // The patch margins on all sides of the object are 36px
body {padding: 36px 24px ;} // The patch margin on both the top and bottom sides is 36px, and the patch margin on both sides is 24px
body {padding: 36px 24px 18px ;} // The patch margins of the top and bottom sides are 36px and 18px respectively, and the patch margins of the left and right sides are 24px
body {padding: 36px 24px 18px 12px ;} // The top, right, bottom, and left patch margins are 36px, 24px, 18px, and 12px respectively.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.