Leakbali
w3 Tutorial, Web Tutorial
Switch to English Bahasa Indonesia 
Register   Login

CSS - Padding


The CSS padding properties define the space between the element border and the element content.

The padding clears an area around the content (inside the border) of an element. The padding is affected by the background color of the element.

The top, right, bottom, and left padding can be changed independently using separate properties. A shorthand padding property can also be used, to change all paddings at once.

Possible Value

ValueDescription
lengthDefines a fixed padding (in pixels, pt, em, etc.)
%Defines a padding in % of the containing element
In CSS, it is possible to specify different padding for different sides:

Example

padding-top:25px;
padding-bottom:25px;
padding-right:50px;
padding-left:50px;
To shorten the code, it is possible to specify all the padding properties in one property. This is called a shorthand property.

The shorthand property for all the padding properties is "padding":

Example

padding:25px 50px;
The padding property can have from one to four values.
  • padding:25px 50px 75px 100px;
    1. top padding is 25px
    2. right padding is 50px
    3. bottom padding is 75px
    4. left padding is 100px
  • padding:25px 50px 75px;
    1. top padding is 25px
    2. right and left paddings are 50px
    3. bottom padding is 75px
  • padding:25px 50px;
    1. top and bottom paddings are 25px
    2. right and left paddings are 50px
  • padding:25px;
    1. all four paddings are 25px

References

About Us

Home
About Us
Contact Us
Sitemap

Tools

Google PageRank
Alexa Rank
Keywords Density

Accounts

Register Account
Login
Valid XHTML 1.0 TransitionalValid CSS!
Web Directory


2006 - 2012 © Leakbali.com - Free Web Tutorial, Free Web Articles, Web Sharing, Source Codes, Web References