在主要内容下方形成形状的最佳方法是什么?

时间:2017-09-15 13:02:41

标签: css background-image css-shapes

我有一个响应式设计,如下图所示 enter image description here

在左侧复制此形状的最佳方法是什么?我可以使用img吗?或者我应该把它作为background images?或者将它用作css形状?

1 个答案:

答案 0 :(得分:1)

您可以使用线性渐变



.box{
width:200px;
height:350px;
background:white;
background: -moz-linear-gradient(125deg, red 30%, white 30%);
background: -webkit-linear-gradient(125deg, red 30%, white 30%);
background: -o-linear-gradient(125deg, red 30%, white 30%);
background: -ms-linear-gradient(125deg, red 30%, white 30%);
background: linear-gradient(125deg, red 30%, white 30%);
border: 1px solid #ccc;
}

<div class="box"></div>
&#13;
&#13;
&#13;