Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Flexible triangles using borders? Re: Flexible triangles using borders?

#115399
jwebcat
Member

hey why dont you just use :after on the li element
like:
li:after {
position: absolute:
border-top: .2em solid grey;
border-left: .2em solid transparent;
border-right: .2em solid transparent;
content: “”;
}