css3 - Is it possible to create a button pointing downward (image included) with only CSS? -
i create using css. possible? if so, can guys me out?
fairly easy borders , pseudo element:
<a href="#" id="button">all</a> #button::after { content: ""; border: 64px solid transparent; border-top: 12px solid orange; position: absolute; top: 29px; left: 0; }