Hello people, this is my first question, so i do not know if i am doing it ok...
I would like to know what is the meaning of ".foo{}"
It is placed at the beggining of a css stylesheet i have been modifying.
Regards. tomano
Hello people, this is my first question, so i do not know if i am doing it ok...
I would like to know what is the meaning of ".foo{}"
It is placed at the beggining of a css stylesheet i have been modifying.
Regards. tomano
all elements with the foo
class have the style between the curly brackets after that (none)
It's just a CSS block modifying the class foo
.
So, every tag in the HTML file with class="foo"
would be affected by that CSS block, which in your case does nothing, with what you posted.