मान इनहेरिट वाली मार्जिन प्रॉपर्टी का उपयोग मूल तत्व से किसी तत्व को इनहेरिट करने के लिए किया जाता है। मार्जिन:इनहेरिट; . को लागू करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं
उदाहरण
<!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>
आउटपुट