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?

enter image description here

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; } 

demo


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -