Files
ClassContent/历届学生/吴欣阳/项目开发/上课项目/vmall/te3st.html
2024-09-27 02:06:13 +08:00

44 lines
972 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 250px;
margin: auto;
overflow: hidden;
}
.home_top {
position: relative;
width: 100%;
height: 100px;
text-align: center;
line-height: 50px;
}
.home_top:after {
width: 140%;
height: 100px;
position: absolute;
left: -20%;
top: 0;
z-index: -1;
content: '';
border-radius: 0 0 50% 50%;
background: linear-gradient(#2CBAF9, #04A9F4);
}
</style>
</head>
<body>
<div class="box">
<div class="home_top"> 这里是内容 </div>
</div>
</body>
</html>