神秘代码
2025-11-29 11:47:00
发布于:广东
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>有点意思</title>
<style>
body{
background-color: pink;
}
.tt{
height: 100px;
font-size: 70px;
color: white;
text-align: center;
background: rgb(245, 152, 185);
border-radius: 15px;
}
.card{
overflow: hidden;
width: 340px;
height: 160px;
background-color: red;
border-radius: 20px;
margin: 0 auto;
margin-top: 100px;
box-shadow: 10px 10px 30px rgb(0,0,0,5);
}
.a{
display: flex;
padding-left: 15px;
align-items: center;
height: 60px;
background: rgb(240,251,255);
}
.b{
height: 100px;
background: rgb(190,219,233);
font-size: 30px;
line-height: 100px;
padding-left: 20px;
}
.circle{
width: 20px;
height: 20px;
background: red;
border-radius: 50%;
margin: 0 3px;
}
.text{
padding-left: 10px;
}
</style>
</head>
<body>
<div class="tt">有点意思</div>
<div class="card">
<div class="a">
<div class="circle"></div>
<div class="circle" style="background: orange;"></div>
<div class="circle" style="background: green;"></div>
<div class="text">温馨提示</div>
</div>
<div class="b">我拿筷子拌水泥</div>
</div>
</body>
</html>
这里空空如也







有帮助,赞一个