Footer consisting of two right triangles

孤街浪徒 提交于 2019-11-28 06:44:06

问题


I'm making a website and I want the footer to look like this: https://imgur.com/a/JuHHHkM

It's basically two triangles on top of each other. I've tried to make triangles like this:

#triangle-bottomleft {
width: 0;
height: 0;
border-bottom: 100px solid red;
border-right: 100px solid transparent;
}    

But because the width depends on how many pixels you put in the border-right, I cannot use width: 100%.

Any Alternatives? Thanks in Advance


回答1:


You can easily achieve this with gradients:

.footer {
  height:100px;
  background:
   linear-gradient(to bottom right,transparent 49.5%,blue 50%),
   linear-gradient(to bottom left,transparent 49.5%,green 50%);
}
<div class="footer">
</div>

You can also adjust the size if you don't want the triangle to be full width:

.footer {
  height:100px;
  background:
   linear-gradient(to bottom right,transparent 49.5%,blue 50%) right/80% 100% no-repeat,
   linear-gradient(to bottom left,transparent 49.5%,green 50%) left/80% 100% no-repeat;
}
<div class="footer">
</div>


来源:https://stackoverflow.com/questions/51749041/footer-consisting-of-two-right-triangles

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!