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

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -