⊗mkLsBsSG 6 of 41 menu

Grouping Selectors in LESS

If there is a grouping of selectors during nesting, then LESS will correctly expand this construction during compilation. Let's see in practice. Here is an example of grouping:

#header { .menu, .logo { color: red; } }

As a result, when compiled, you will get the following code:

#header .menu, #header .logo { color: red; }

Tell me what the result of compiling the following code will be:

#block { ul, ol { color: blue; li { font-size: 20px; } } }
enru