Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> p.one { margin: 20px 0; } p.two { margin: 35px 0; } </style> </head> <body> <h2>Margin-bottom property example</h2> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> <p class="one">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> <p class="two">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </body> </html>