2
2

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 5 years have passed since last update.

Emmetいいよ、Emmet「<li>になにか入れたい時」

Last updated at Posted at 2015-10-08

Emmetいいよ、Emmet
最近はまってる。

読んでないけど読むと幸せになる記事:
HTML/CSSを爆速コーディング Emmet入門 第1回 Emmetを薦める理由

liが7個で中にbrをいれたいとき

Emmetの省略記法を用いた記述
`li*7>br`
Emmetにより展開されたコード
<li><br></li>
<li><br></li>
<li><br></li>
<li><br></li>
<li><br></li>
<li><br></li>
<li><br></li>

liが2個で中に文章を入れてついでにbrもいれたいとき

Emmetの省略記法を用いた記述
 `li*2>{入れたい文章<br>}`
Emmetにより展開されたコード
<li>入れたい文章<br></li>
<li>入れたい文章<br></li>

ちょっとづつわかった記述を書いていきます( ˘ω˘)

2
2
2

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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?