
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Role of Margin Property with Value Inherit Using CSS
The margin property with value inherit is used to inherit an element from the parent element. You can try to run the following code to implement margin: inherit;
Example
<!DOCTYPE html> <html> <head> <style> div { border: 2px solid blue; margin-left: 50px; } p.ex1 { margin-left: inherit; } </style> </head> <body> <p>Inheriting left margin from the parent element</p> <div> <p class = "ex1">This is demo text with inherited left margin.</p> </div> </body> </html>
Output
Advertisements