I am curious if there is a slightly faster way to achieve this.
Say, for example, I have the following CSS:
#main_login input[type=text], #main_login input[type=password] { }
Is there a faster way? Sometimes I can have a line with many other declarations, i.e.
#main_login blah, #main_login meh, #main_login getting_long, #main_login super_long { }
Repeated many #main_login. I saw some advanced CSS'sers using asterix etc., and yet, to research similar things. I guess there is a better way to do what I do.
Any pointers?
source share