使用伪元素。
<!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>
</head>
<style>
.box {
width: 200px;
height: 100px;
background: red;
}
.box::before {
content: " ";
width: 5px;
height: 40px;
border-radius: 10px;
position: relative;
top: 25px;
display: block;
background: yellow;
}
</style>
<body>
<div class="box">
</div>
</body>
</html>
10 回答11.3k 阅读
5 回答4.9k 阅读✓ 已解决
4 回答3.2k 阅读✓ 已解决
2 回答2.8k 阅读✓ 已解决
3 回答5.2k 阅读✓ 已解决
2 回答4.8k 阅读✓ 已解决
4 回答4.4k 阅读✓ 已解决
用渐变吧
下面是一个 demo
https://codepen.io/xboxyan/pe...