切割三角形的矩形

时间:2013-01-02 19:14:18

标签: css3

如何在css中制作类似的内容?

https://www.dropbox.com/s/6ol23la6ey373gt/example.png

1 个答案:

答案 0 :(得分:1)

您可以在.up中添加边框图像,以查看上图中的完整克隆效果!

Fiddle

div.wrapper {
    background:#d89043;
    width:400px;
    height:300px;
    position:relative;
}
div.up {
  width:0px; 
  height:0px; 
  border-left:50px solid transparent;  /* left arrow slant */
  border-right:50px solid transparent; /* right arrow slant */
  border-bottom:50px solid #fff; /* bottom, add background color here */
  font-size:0px;
  line-height:0px;
  position:absolute;
  bottom:0;
  margin-left:40%;
}​