39,118
社区成员




<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
.box1 {
width: 30%;
height: 50%;
margin: 0 auto;
margin-top: 10%;
box-sizing: border-box;
border: 10px solid;
border-color: #000 #e0921e #e0921e #000;
}
.box2 {
width: 100%;
height: 100%;
box-sizing: border-box;
border: 10px solid;
border-color: #e0921e #000 #000 #e0921e;
}
img {
width: 100%;
height: 100%;
display: block;
}
</style>
<body>
<div class="box1">
<div class="box2">
<img src="./1224.jpg" alt="">
</div>
</div>
</body>
</html>
没那么复杂