Did you know CSS has over 400 unique properties
Sadick
Posted on June 30, 2018
I didn't know either until I did this.
var element = document.createElement("div");
var count = 0;
for (var index in element.style) count++;
console.log(count); // 413
💖 💪 🙅 🚩
Sadick
Posted on June 30, 2018
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
codepen Creating a smooth landing page reveal animation with CSS animations and vanilla JS
July 6, 2020