I wanna do this shape using css
Any sugestion?
You can use CSS clip-path
div { height: 100px; width: 100px; clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); background: #ccc; }
<div></div>