如何创建这样的三角形?

时间:2013-04-14 13:11:44

标签: css css3

您好我想知道如何在此模板中在页脚顶部创建这些小三角形:http://demo.themezilla.com/classica/portfolio/redwood-publishing/。 我在源代码中看了CSS,发现了这个:

border-top: 1px solid # e0e0e0 

但它不起作用。

1 个答案:

答案 0 :(得分:1)

那是image !!!

你忘了看到这个:

#footer-container {
  background: url(images/bg-foot.gif) left top repeat-x #f5f5f5;
  margin: 80px 0 0 0;
}

只是说,如果你想得到它,你需要这个CSS:

.footer {
  background: url("http://turbo.themezilla.com/classica/wp-content/themes/classica/images/bg-foot.gif") left top repeat-x #f5f5f5;
}

但是未经他们的许可将图片热链接。图像看起来像这样:

http://turbo.themezilla.com/classica/wp-content/themes/classica/images/bg-foot.gif

小提琴:http://jsfiddle.net/praveenscience/F5RVR/