+ 1
Can i put more than one selector in the same CSS file??
Can i put more than one selector in the same CSS file and how??
2 ответов
+ 3
Obviously you can ^^
Just put the lines from the content of a <style></style> ( or compile many ) in a file, and link it to your html code by insterting a <link ... > element.
+ 2
Sure you can:
.selector1{
prop:value;
prop:value;
}
.selector2{prop:value;}
#selector3{prop:value;}
etc.