When I specify
.a ul{}
.a ul li{}
as well as
.b ul{}
.b ul li{}
will the properties of ul
in .b
be completely isolated from the properties of ul
in .a
? Or will they have some commonalities?
I am looking to ensure that the styles for ul
remain entirely separate between .a
and .b
, without resorting to using a div id
. Thank you.