答案 0 :(得分:1)
div {
background-color: #AC4244;
position: relative;
height: 40px;
width: 100%;
}
div:before {
content: '';
width: 0;
height: 0;
border-style: solid;
border-width: 20px 0 20px 5px;
border-color: transparent transparent transparent #ffffff;
position: absolute;
left: 0;
top: 0;
}
div:after {
content: '';
width: 0;
height: 0;
border-style: solid;
border-width: 20px 5px 20px 0;
border-color: transparent #ffffff transparent transparent;
position: absolute;
right: 0;
top: 0;
}

<div></div>
&#13;