css背景与3个方向

时间:2018-03-18 16:18:33

标签: css css3 background linear-gradients

是否可以在CSS中创建3种颜色和3种方向的背景? 我是CSS渐变的初学者。

enter image description here

1 个答案:

答案 0 :(得分:1)

这是一个只有一个div 和多个渐变的解决方案,无需使用变换或负边距复杂化:

.box {
  width:200px;
  height:200px;
  background: 
  linear-gradient(150deg,#0c13a2 35%,transparent 35.5%),
  linear-gradient(-120deg, #000000 50%, #c70535 50.5%);
}
<div class="box">
</div>