CSS3三角形/切割边框

时间:2013-07-17 22:55:51

标签: css css3 border css-shapes

我想知道是否有一种“简单”的方法来使用CSS3做下面的事情,我想避免使用图像和绝对定位,或类似的,并且更愿意使用一些CSS方法来实现这一点。

enter image description here

我也想避免在这种风格中使用任何固定的高度,因为我将在各种尺寸和颜色各不相同的元素上使用相同的样式。

4 个答案:

答案 0 :(得分:3)

您可以在CSS中使用简单的剪辑路径:

clip-path:polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%, 5% 50%);

结果(在Chrome中):

enter image description here

ONLINE DEMO

但请注意,对所有浏览器而言,支持并不是那么好。目前我可以告诉not work in FF(我相信你可以使用SVG代替FF)。

<强>更新

好的,在玩了SVG之后(我不是SVG专家)我想出了一个在FF中工作的“原型”:

在HTML中:

<!-- For firefox -->
<svg class="svg-graphic" width="250" height="36" viewBox="0 0 250 36" xmlns="http://www.w3.org/2000/svg" xlink="http://www.w3.org/1999/xlink" version="1.1">
    <clipPath id="mask">
        <polygon points="0, 0, 250, 0, 235, 18, 248, 35, 1, 35, 15, 18" />
    </clipPath>
</svg>

然后在CSS中将其ID设置为剪切路径:

clip-path:url(#mask);

它将在Firefox中生成:

enter image description here

(使用此代码更新小提琴)

答案 1 :(得分:1)

这样可以使您的裁剪区域透明:

HTML

<div class="left"></div>
<div class="center"></div>
<div class="right"></div>

CSS

.left {
    width: 0; 
    height: 0; 
    border-top: 60px solid red;
    border-bottom: 60px solid red;
    display: inline-block;
    border-left: 60px solid transparent;
}
.center {
    width: 300px;
    height: 120px;
    background-color: red;
    display: inline-block;
    margin-left: -4px;
    margin-right: -4px;
}
.right {
    width: 0; 
    height: 0; 
    border-top: 60px solid red;
    border-bottom: 60px solid red;
    display: inline-block;
    border-right: 60px solid transparent;
}

更新了小提琴w /背景图片以显示trasparency:http://jsfiddle.net/Eg9jF/1/

答案 2 :(得分:0)

您可以使用CSS3渐变来支持大多数现代浏览器:

banner example

h1 {
  background: red;
  display: inline-block;
  color: white;
  font-family: sans-serif;
  padding: .5em 1em;
  margin: 5em;
  position: relative;
}
h1:before, h1:after {
  content: '';
  width: 2em;
  height: 100%;
  position: absolute;
  top: 0;
}
h1:before {
  left: -2em;
  background-image: -webkit-linear-gradient(45deg, transparent 50%, #ff0000 50%), -webkit-linear-gradient(-45deg, #ff0000 50%, transparent 50%);
  background-image: -moz-linear-gradient(45deg, transparent 50%, #ff0000 50%), -moz-linear-gradient(-45deg, #ff0000 50%, transparent 50%);
  background-image: -o-linear-gradient(45deg, transparent 50%, #ff0000 50%), -o-linear-gradient(-45deg, #ff0000 50%, transparent 50%);
  background-image: linear-gradient(45deg, transparent 50%, #ff0000 50%), linear-gradient(-45deg, #ff0000 50%, transparent 50%);
}
h1:after {
  right: -2em;
  background-image: -webkit-linear-gradient(-135deg, transparent 50%, #ff0000 50%), -webkit-linear-gradient(135deg, #ff0000 50%, transparent 50%);
  background-image: -moz-linear-gradient(-135deg, transparent 50%, #ff0000 50%), -moz-linear-gradient(135deg, #ff0000 50%, transparent 50%);
  background-image: -o-linear-gradient(-135deg, transparent 50%, #ff0000 50%), -o-linear-gradient(135deg, #ff0000 50%, transparent 50%);
  background-image: linear-gradient(-135deg, transparent 50%, #ff0000 50%), linear-gradient(135deg, #ff0000 50%, transparent 50%);
}

Demo

(您可能会遇到此problem,但您可以阅读如何解决它。)

答案 3 :(得分:0)

我需要为我的3列行中的每个标题执行此操作,而我只需要在一侧剪切。这些答案都不适合我,所以我想出了这个。

<强> CSS

#test {
  height: 66px;
  width: 90%;
  background-color: #2a6999;
  position: relative;
}

#test::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: 25px;
  width: 100%;
  height: 33px;
  top: 0px;
  background-color: #2a6999;
  -webkit-transform: skew(-45deg);
  -moz-transform: skew(-45deg);
  -o-transform: skew(-45deg);
  -ms-transform: skew(-45deg);
  transform: skew(-45deg);
  }

#test::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 25px;
  width: 100%;
  height: 33px;
  top: 33px;
  background-color: #2a6999;
  -webkit-transform: skew(45deg);
  -moz-transform: skew(45deg);
  -o-transform: skew(45deg);
  -ms-transform: skew(45deg);
  transform: skew(45deg);
} 

Fiddle Demo