xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to set margin at the left of an HTML element using CSS
CSS Online Editor
Run Code
More CSS Sample Codes
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Set margin at the left of an HTML element using CSS</title> <!--Internal CSS added--> <style> /* CSS id name used to apply css style to the divs*/ #div-1 { margin-left: 30px; /*30px margin at left side of the div*/ background-color: lightpink; /*background color of the div*/ } #div-2 { margin-left: 60px; /*60px margin at left side of the div*/ background-color: lightblue; /*background color of the div*/ } div { min-height: 100px; } </style> </head> <body> <h1>How to set margin at the left of an HTML element using CSS?</h1> <h3 style="color:orangered;">Use margin-left css property to set margin at the left of the HTML element</h3> <div id="div-1">First div with 30px margin at left</div> <div id="div-2">Second div with 60px margin at left</div> </body> </html>