在html和css中制作两个不同背景的三角形

时间:2016-02-18 15:57:31

标签: html css background positioning

我正在尝试制作类似此图像enter image description here

的内容

我尝试用两个div创建两个不同的三角形并设法将它们拼凑在一起以实现此目的但不知道如何将文本放入其中以使其看起来像这个图像。我甚至不确定这种方法是否正确。任何改进都将受到赞赏。

#top {
  width: 0;
  height: 0;
  border-top: 300px solid tomato;
  border-right: 600px solid transparent;
  display: inline;
  display: table-cell;
  position: relative;
}

#bottom {
  width: 0;
  height: 0;
  border-bottom: 300px solid skyblue ;
  border-left: 600px solid transparent;
  display: inline;
  display: table-cell;
  position: absolute;
  top: 8px;
}
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
<div id="top">
  
</div>
  <div id="bottom">
    
</div>
</body>
</html>

1 个答案:

答案 0 :(得分:3)

我做了一个小提琴:https://jsfiddle.net/Sprazer/hk9761u9/ 非常基本,没有回应

编辑响应:https://jsfiddle.net/Sprazer/hk9761u9/

h2 span{
  width: 50%;
  text-align: center;
  display: block;
  float: left;
}
h2{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
 -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5  ;
  text-align: center;
  font-size: 50px;
  margin: 0;
}