Still using vendor prefixes in 2023?
http://shouldiprefix.com/#filters
Isn’t -webkit-filter still required?
https://caniuse.com/css-filters
It looks like not really anymore
Woah, TIL
No… My bad… Normally I use PostCSS
ok i know nobody cares but thats not how the blur filter would look like and it triggers me
deleted by creator
In HTML:
div class=“hands”>
In CSS:
.hands
A dot in CSS means you’re referring to an HTML Class. Note that this is different from the OOP Class in scripting languages. Think of HTML classes as classrooms. You can have multiple divs with the same class name, each will be affected when you style that class name. Just like students follow the same rule when applied to a classroom.
In some specific instances, ID is used instead of class. # is used in CSS instead of a dot. The only difference is that in ID, each element should have a unique ID.
div id=“right-arm”
CSS: #right-arm
To add onto this, you can also have:
<div> </div>
And style it with:
div { background-color: red; }
just using the html tags without a . or #
deleted by creator
The language is CSS, the dot signifies that it’s the name of a class. So any HTML elements with the same class name will have those CSS styles applied to them
CSS class?