作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将最喜欢的技术应用于不同的形状,但我无法让右侧边框看起来与我想要的 2px 边框成比例。
.tabular_one{
display: inline-block;
position: relative;
width: 500px;
height: 30px;
background: black;
box-sizing: border-box;
-webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
.tabular_one h2{
margin: 0;
position: absolute;
top: 2px;
left: 2px;
width: 496px;
height: 26px;
background-color: #277455;
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
<div>
<div class="tabular_one">
<h2>TAKE A LOOK AT WHAT WE DO!</h2>
</div>
</div>
Codepen 中的代码链接:Example in Code pen
最佳答案
您可以使用 px
而不是 %
将内部形状从外部形状偏移 2px,如下所示:
.box{
display: block;
position: relative;
width: 500px;
height: 30px;
background: black;
clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
.box h2{
padding:0;
margin: 0;
display: block;
position: absolute;
width: 500px;
height: 30px;
background-color: red;
clip-path: polygon(2px 2px, 493px 2px, 449px 28px, 2px 28px);
}
关于css - 我需要帮助使用 clip path css 在形状(陡峭的平行四边形)上制作 2px 边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52502332/
我是一名优秀的程序员,十分优秀!