, , . , - , linear-gradient . CSS- ( :before/:after) , .
jsFiddle - .
. Chrome, FF .
HTML
<div id="two">
<div></div>
</div>
CSS
#two {
width: 940px;
height: 350px;
padding: 0;
margin-left: 10px;
position: relative;
background: rgb(255,255,255);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 2%, rgba(0,0,0,1) 40%, rgba(0,0,0,1) 60%, rgba(255,255,255,1) 98%);
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 2%,rgba(0,0,0,1) 40%,rgba(0,0,0,1) 60%,rgba(255,255,255,1) 98%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 2%,rgba(0,0,0,1) 40%,rgba(0,0,0,1) 60%,rgba(255,255,255,1) 98%);
}
#two > div {
background-color: purple;
width: 920px;
height: 100%;
margin: 0px auto;
}
#two:before, #two:after {
content: "";
width: 10px;
height: 0px;
border-top: 175px solid transparent;
border-bottom: 175px solid transparent;
position: absolute;
top: 0;
}
#two:before {
left: 0px;
border-left: 10px solid white;
}
#two:after {
right: 0px;
border-right: 10px solid white;
}
, - , . , .