How to group with Emmet

207 views Asked by At

div>header>ul>li*2>a+footer>p is not working for me. I need to group whatever is between the ul and a. How can I do this?

1

There are 1 answers

4
Alex On BEST ANSWER

You can group things with Emmet with the brackets. In your case: div>header>(ul>li*2>a)+footer>p Give it a try.