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? -

java - How to create Table using Apache PDFBox -

mpi - Why is MPI_Bsend not returning error even when the buffer is insufficient to accommodate all the messages -