2 个回答

用渐变吧

.card{
  width: 300px;
  height: 150px;
  background: linear-gradient(red,red) 0 10px/5px 30px no-repeat #eee;
}

下面是一个 demo

https://codepen.io/xboxyan/pe...

image.png

使用伪元素。

<!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>
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题