<html lang="en">
<head>
<meta charset="UTF-8">
<title>lianxi</title>
<style>
.bordered-box {
border: 2px solid black; /* 设置边框为1像素的实线 */
width: 1000px; /* 设置宽度为400像素 */
height: 600px; /* 设置高度为400像素 */
display: flex;
justify-content: center;
align-items: center;
gap: 4px;
}
.Redbox{
/*border: 1px solid black; !* 设置边框为1像素的实线 *!*/
width: 40px; /* 设置宽度为400像素 */
height: 40px; /* 设置高度为400像素 */
background-color: red;
}
.Greenbox{
width: 40px; /* 设置宽度为400像素 */
height: 80px; /* 设置高度为400像素 */
background-color: green;
}
.Bluebox{
width: 40px; /* 设置宽度为400像素 */
height: 40px; /* 设置高度为400像素 */
background-color: blue;
}
</style>
</head>
<body>
<div class="bordered-box">
<div class="Redbox"></div>
<div class="Greenbox"></div>
<div class="Bluebox"></div>
</div>
</body>
</html>