console
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
body{
background-color: pink;
margin: 20px;
}
.box{
width: 200px;
padding: 3px;
margin: 10px;
text-align: center;
background-color: wheat;
display: inline-block;
}
.box img{
position: relative;
width: 150px;
padding: 10px;
}
.box p{
margin: 7px;
}
</style>
</head>
<body>
<div>
<div class="box">
<img src="https://i.loli.net/2021/05/06/5SdHFm4cpBw7TPC.jpg"/>
<p>哦</p>
</div>
<div class="box">
<img src="https://i.loli.net/2021/05/06/s7tCoDqhcnwZrxb.jpg"/>
<p>嘻嘻</p>
</div>
<div class="box">
<img src="https://i.loli.net/2021/05/06/2CvYbsud3GFylAP.jpg"/>
<p>你******</p>
</div>
<div class="box">
<img src="https://i.loli.net/2021/05/06/eh1jdvJOCpUqDB4.jpg"/>
<p>啊啊啊啊啊啊</p>
</div>
</div>
</body>
</html>