<div class="shape-ex5"></div>
.shape-ex5{
width: 200px;
height: 90px;
background-color: #666;
display: block;
position: relative;
margin: 50px 0;
}
.shape-ex5::before{
content: '';
width: 0;
height: 0;
display: block;
border-left: 100px solid transparent;
border-bottom: 55px solid #666;
border-right: 100px solid transparent;
position: absolute;
bottom: 100%;
left: 0;
}
.shape-ex5::after{
content: '';
width: 0;
height: 0;
display: block;
border-left: 100px solid transparent;
border-top: 55px solid #666;
border-right: 100px solid transparent;
position: absolute;
top: 100%;
left: 0;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.