If there is such a code
Reply to discussion (solution)
can be written like this: #abc.ul{
....
}
You cannot write it like the original poster.
can be written like this:
....
} #abc .li .ul{
....
}
#abc.ul{
....
}
Both are fine
My friend, in fact, it is not easy to manage code the way you think.
For example, what you said:
#abc
alignment-adjust:auto;
ruby-align:left;
.li.......... ........
.ul............. This kind of
}
If there are too many levels of nesting, it will be very troublesome.
In addition, to correct your question, li and ul are html tags, and there is no need to add "." in front of them. "." represents class
In contrast,
#abc li{
}
#abc ul{
}
This will make it much clearer and easier for you to see the hierarchical relationship