CSS padding top is used to set the space between the HTML element tag border and its content from the top.
Syntax
1 |
padding-top: enter value in px, em or percentage |
1 2 3 4 5 6 7 8 9 10 11 |
<style> .div-padding{ border:1px solid yellow; border-radius:20px; padding-top:50px; } </style> <div class="div-padding"> <p>This is paragraph to show padding top property of CSS.</p> </div> |
Output
This is paragraph to show padding top property of CSS.
CSS padding top values list
Sr. No. | value | Description |
---|---|---|
1 | value | Used to specify the value in px, percentage. The value for this for example 15px. |
2 | initial | Used to define as the property initial value. |
3 | inherit | Used to define the computed value of property on the elements parent. |
4 | unset | Used to define the property either acts as inherit or initial, depending on the property if it is inherited or not. |