我想做一个像这张图中的角
我是一个前端开发的初学者。我试过这个,但我现在卡住了。
代码:
* {
margin: 0;
padding: 0;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background-color: white;
border-radius: 15px
}
.box {
text-align: center;
font-size: 50pt;
}
#top {
background-color: blue;
position: relative;
border-bottom-left-radius: 50px
}
#top:after {
content: "";
position: absolute;
right: 0;
top: 100%;
height: 100px;
width: 100px;
border-top-right-radius: 50%;
box-shadow: 0 -50px 0 0 black;
}
#bottom {
background-color: red;
position: relative;
}
个字符
这段HTML和CSS代码定义了一个网页,它有一个居中的容器,包含两个框,一个有蓝色背景(“顶部”)和装饰性阴影,另一个有红色背景(“底部”)。样式包括圆角和居中的文本。
2条答案
按热度按时间vjhs03f71#
我只需要在顶部和底部添加额外的容器来设置相反的背景颜色
个字符
hiz5n14c2#
我会这样做...
简单地用双色(左,右)作为背景。
个字符