ReportingAnalyst
MIS
Hi,
What is the difference between the two of the following?
and
I do know that .menu means a CSS class which I can apply to a HTML tag (form element)
What does #menu mean and where should be used?
When I do I know when you use .menu or #menu?
Thanks.
What is the difference between the two of the following?
Code:
#menu {
padding:0;
margin:0;
}
and
Code:
.menu {
padding:0;
margin:0;
}
I do know that .menu means a CSS class which I can apply to a HTML tag (form element)
What does #menu mean and where should be used?
When I do I know when you use .menu or #menu?
Thanks.