简体   繁体   中英

Symbol ^ in emmet abbreviation is not working correctly (VSCode)

.menu>a*3^+.cart

There, symbol ^ isn't working. But in sublime text it's works properly.

I want to get:

<div class="menu">
  <a href=""></a>
  <a href=""></a>
  <a href=""></a>
</div>
<div class="cart"></div>

The issue isn't with the ^ but with your plus + .

This produces what you want to get:

.menu>a*3^.cart

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM