I have a question on CSS selector syntax.
What is the difference between the following two CSS selectors?
.myclass1 .myclass2 {
color: black;
}
.myclass1.myclass2 {
color: black;
}
Are they the same?
Thanks.
|
I have a question on CSS selector syntax. What is the difference between the following two CSS selectors?
Are they the same? Thanks. |
||||
|
|
|
|
|||
|
|
|
|
|||
|
|
|
.myclass1.myclass2 will only do what's inside if the element has both mclass1 and myclass2 don't know about .myclass1 .myclass2 |
|||
|
|