Могу предложить даже кроссбраузерный вариант...
<html>
<head>
<style>
body {
background-color: #ffffff;
}
#left,
#right {
width: 100px;
height: 100px;
float: left;
/*overflow: hidden;*/
}
#center {
height: 100px;
float: left;
background-color: silver;
}
#b_left {
border-top: 100px solid silver;
border-left: 100px solid #ffffff;
}
#b_right {
border-bottom: 100px solid silver;
border-right: 100px solid #ffffff;
}
</style>
</head>
<body>
<div id='left'>
<div id='b_left'></div>
</div>
<div id='center'>center</div>
<div id='right'>
<div id='b_right'></div>
</div>
</body>
</html>