CSS Pro Tips
October 11, 2015Matt Smith shared some CSS Pro Tips on GitHub. I especially like the following snippet, but there’s a whole lot of other interesting things.
ul > li:not(:last-child)::after {
content: ",";
}
Matt Smith shared some CSS Pro Tips on GitHub. I especially like the following snippet, but there’s a whole lot of other interesting things.
ul > li:not(:last-child)::after {
content: ",";
}