<html>
<head>
<style>
body {
background-color:#E7E9EB;
}
#myDIV {
height:300px;
background-color:#FFFFFF;
}
.bluediv {
width:200px;
background-color:lightblue;
margin: 10px 1px 15px 50px;
}
</style>
</head>
<body>
<h1>The margin property</h1>
<div id="myDIV">
<div class="bluediv">
See this blue div element with different margin values.
</div>
</div>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.php?filename=trycss_play_margin by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 18:16:41 GMT -->
</html>