Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS margin property</title> <style type="text/css"> p.first { border: 1px solid orange; margin-left: 30px; } p.second { border: 1px solid orange; margin-left: 20%; } p.third { border: 1px solid orange; margin-left: auto; } </style> </head> <body> <p class="first">This element set margin-left, border width, border color, border style CSS properties.</p> <p class="second">This element set margin-left, border width, border color, border style CSS properties.</p> <p class="third">This element set margin-left, border width, border color, border style CSS properties.</p> </body> </html>
  Preview Arrow