मार्जिन प्रॉपर्टी का मूल्य ऑटो के साथ तत्व को उसके कंटेनर के भीतर क्षैतिज रूप से केंद्रित करने के लिए उपयोग किया जाता है। मार्जिन लागू करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं:ऑटो;
उदाहरण
<!DOCTYPE html> <html> <head> <style> div { width: 200px; margin: auto; border: 2px dashed blue; } </style> </head> <body> <p>This is demo text</p> <div> This is horizontally centered because it has margin: auto; </div> </body> </html>
आउटपुट