Day 39: comma-separated functional color notations

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
On day 11 I've introduced you to space-separated functional color notations. Early color functions like rgb() and hsl() support both the old comma-separated and the new space-separated syntax./* ✅ works */ div { background-color: rgb(255, 210, 210); color: hsl(150, 76%, 20%); } /* ✅ works */ div { background-color: rgb(255 210 210); ...