display visibility scroll

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.box{
width: 300px;
height: 300px;
border: solid 2px;

}
.divP{
display: flex;
}
</style>
</head>
<body>
<div class="divP">

<div class="box">
Box1
</div>

<div class="box">
Box1
</div>


<div class="box">
Box1
</div>


<div class="box">
Box1
</div>
</div>


</body>
</html>

Comments

Popular posts from this blog