Create index.html file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="parent">
<div class="child1"></div>
<div class="child2"></div>
</div>
</body>
</html>
create index.css
.parent{
display: flex;
justify-content: space-between;
}
.child1{
width: 50px;
height: 50px;
background-color: red;
}
.child2{
width: 50px;
height: 50px;
background-color: green;
}
Comments
Post a Comment