Vendor Prefixes (-moz, -webkit) finally obsolete, or..?
I was looking over my code today, and every instance of rounded corners kinda looks ike this :
.classname {
width: 300px; height: 300px;
-moz-border-radius: 20px/20px;
-webkit-border-radius: 20px 20px;
border-radius: 20px/20px;
}
I didn't mind it at first, but as the website nears completion, streamlining is more on my mind than it was during building. So I Googled the subject of vendor prefixes (and their relevance in 2017) and found this. It's a year old, but about as recent an article as I've found on the subject.
So now I ask, what percentage of my audience am I potentially losing by doing away with -moz & -webkit backup code on a website scheduled to go up this summer?
