CSS margin right is used to set the space between the HTML element border and its content from the right.
Syntax
1 |
margin-right: enter value in px, em or percentage |
1 2 3 4 5 6 7 8 9 10 11 12 |
<style> .div-margin{ border:1px solid yellow; border-radius:20px; } .div-margin p{ margin-right:100px; } </style> <div class="div-margin"> <p>This is the large paragraph to show margin from the right hand side. This is the margin property of CSS. You can use this property to give right CSS</p> </div> |
Output
This is the large paragraph to show margin from the right hand side. This is the margin property of CSS. You can use this property to give right CSS
CSS margin right values list
The values and description of this property is used for margin right to define the margin.
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. |