CSS凹进去的三角形怎么做?

发布于 2022-09-30 23:09:44 字数 57 浏览 25 评论 0

图片上的这种

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

庆幸我还是我 2022-10-07 23:09:44

基本可用的一个实现

https://codepen.io/pantao/pen...

<!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>
    .steps {
      margin: 0;
      padding: 0;
      list-style-type: none;
    }

    .steps li {
      display: inline-block;
      margin-left: -10px;
    }

    .steps li a {
      display: block;
      padding: 0 30px;
      line-height: 30px;
      text-decoration: none;
      color: #345;
      background-color: #def;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
    }

    .steps li a:hover {
      background-color: #9ab;
      color: #def;
    }

    .steps li.current a,
    .steps li.current a:hover {
      background-color: #345;
      color: #def;
    }

    .steps li:first-child {
      margin-left: 0;
    }

    .steps li:first-child a {
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
      padding-left: 20px;
    }
  </style>
</head>
<body>
  <ul class="steps">
    <li>
      <a href="#" title="Step 1">Step 1</a>
    </li>
    <li>
      <a href="#" title="Step 2">Step 2</a>
    </li>
    <li class="current">
      <a href="#" title="Step 3">Step 3</a>
    </li>
    <li>
      <a href="#" title="Step 4">Step 4</a>
    </li>
  </ul>
</body>
</html>
甜心 2022-10-07 23:09:44
.box{
    width:100px;
    height: 100px;
    margin: 200px;
    border-top: 4px solid black;
    border-left: 4px solid black;
    transform: rotateZ(135deg);
}

护你周全 2022-10-07 23:09:44

这个demo可能会用上,使用伪元素实现的

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

image.png

最近可好 2022-10-07 23:09:44

clip-path 随手画。
image.png

酒绊 2022-10-07 23:09:44

借助border做的白边盖住做了一个凹进去的

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  <title>1</title>
  <style>
    .box-wrap{
      width: 100px;
      /* margin-right: 30px; */
      position: relative;
    }
    .box{
      width: 100px;
      height: 30px;
      background-color: #ccc;
      position: relative;
    }
    .box1{
      z-index: 2;
    }
    .box-wrap i{
      width: 22px;
      height: 22px;
      border: 2px solid #fff;
      background-color: #ccc;
      position: absolute;
      right: -14px;
      top: 2px;
      transform: rotate(45deg);
      z-index: 1;
    }
    .fl{
      float: left;
    }
    .fr{
      float: right;
    }
  </style>
</head>

<body>
    <div class="box-wrap fl"><div class="box box1"></div><i></i></div>
    <div class="box-wrap fl"><div class="box box2"></div></div>
</body>
<script>

</script>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文