diisplay
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.box{
height: 200px;
width: 200px;
background: #80c79c;
}
.gallery{
display: flex;
gap: 9px;
}
</style>
</head>
<body>
<div class="gallery">
<div class="box">
Box 1
</div>
<div class="box">
Box 2
</div>
<div class="box">
Box 3
</div>
<div class="box">
Box 4
</div>
</div>
</body>
</html>
Comments
Post a Comment