css - speed of declaring element with class name vs. class name -


will work faster if define class

input.classname 

or if define

.classname 

in css?

technically yes, there very slight difference in speed. don't need worry css matching speed. it's microseconds (as in millionths of second).

what should worry specificity.

see answer here.


Comments