This media is not supported in your browser
    VIEW IN TELEGRAM
  انزل طريقه عمله؟
  This media is not supported in your browser
    VIEW IN TELEGRAM
  Top 3 Ways to Center a DIV with CSS
  <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<style type="text/css" media="all">
body{
background: yellow;
width: 100%;
     
     
}
div{
display: flex;
justify-content: center;
align-items: center;
height: 600px;
}
.moon{
width: 120px;
height: 120px;
border-radius: 50%;
box-shadow: 22px 22px 0 0 black;
        
}
</style>
</head>
<body>
<div>
    
<span class="moon">
  
</span>
</div>
</body>
</html>
@codedevelopment 😉
  <html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<style type="text/css" media="all">
body{
background: yellow;
width: 100%;
}
div{
display: flex;
justify-content: center;
align-items: center;
height: 600px;
}
.moon{
width: 120px;
height: 120px;
border-radius: 50%;
box-shadow: 22px 22px 0 0 black;
}
</style>
</head>
<body>
<div>
<span class="moon">
</span>
</div>
</body>
</html>
@codedevelopment 😉