0

Do you know why when I insert " a*6 " instead of adding the one under the other it adds them in one line?

This is my html when im writing with emmet:

  <nav>
    <a href=""></a><a href=""></a><a href=""></a><a href=""></a><a href=""></a><a href=""></a>
  </nav>

In the video that im watching he does the same thing when he is writting a*6, but in his html it looks like this:

  <nav>
    <a href=""></a>
    <a href=""></a>
    <a href=""></a>
    <a href=""></a>
    <a href=""></a>
    <a href=""></a>
  </nav>
t.niese
  • 39,256
  • 9
  • 74
  • 101
Deansign
  • 1
  • 1
  • 1
    See https://stackoverflow.com/questions/66180926/emmet-abbreviation-syntax-multiplication-puts-all-elements-on-same-line-instead – Mark Mar 30 '21 at 17:53
  • This Link solved my problem! Thank you so much for the help! – Deansign Mar 30 '21 at 18:33

0 Answers0