CSS Padding
Advertisements
CSS Padding
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. Padding have four properties which is given below;
- top
- bottom
- left
- right
Example
<html> <body> <div style="border:1px solid red;"> <p style="padding-top:100px;">padding from top</p> <p style="padding-bottom:100px;">padding from bottom</p> <div> <p style="padding-right:50px;">padding from right</p> <p style="padding-left:50px;">padding from left</p> </body> </html>
Output
padding from top
padding from bottom
padding from right
padding from left
Browser supported
Properties | |||||
padding | Yes | Yes | Yes | Yes | Yes |
Google Advertisment