1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

emmetで0からの連番をつける方法

Last updated at Posted at 2019-10-29

emmetで0からの連番をつける方法、、どうやるの?

分からなかったので調べてみました。

例えば、htmlで

<ul>
    <li>item 1</li>
    <li>item 2</li>
    <li>item 3</li>
    <li>item 4</li>
</ul>

をemmetで記述するには、
ul>li.item$*4ですよね。

連番を好きな数字から始めるには

0からならul>li.item$@0*4

<ul>
    <li>item 0</li>
    <li>item 1</li>
    <li>item 2</li>
    <li>item 3</li>
</ul>

@の後を始めたい数字にすればいいのですね。

学び!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?