0
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?

HTML Emmet略語を復習する

Posted at

デイトラ復習中で、HTMLの略語を改めて学習し、新たな発見もあったのでメモ。

デイトラ
https://daily-trial.com/

まずは要素

index.html
div
→<div></div>

p
→<p></p>

h1
→<h1></h1>

ここでは、divを打つだけで予測変換が出てきて、tabキーやEnterキーを押すことで、上記のように表示される。以下同様。

classやid

index.html
.
→<div class=""></div>

.menu
→<div class="menu"></div>

#menu
→<div id="menu"></div>

入れ子

index.html
ul>li
↓
<ul>
  <li></li>
</ul>

nav>ul>li>a>small
↓
<nav>
    <ul>
        <li><a href=""><small></small></a></li>
    </ul>
</nav>

nav>ul.item>li.item-list
↓
<nav>
    <ul class="item">
        <li class="item-list"></li>
    </ul>
</nav>

隣接(初めて知った)

index.html

header+main+footer
↓
<header></header>
<main></main>
<footer></footer>

dl+dt+dd
↓
<dl></dl>
<dt></dt>
<dd></dd>

繰り返し

index.html
ul>li*3
↓
<ul>
    <li></li>
    <li></li>
    <li></li>
</ul>

.card*3>.card_text
↓
<div class="card">
    <div class="card_text"></div>
</div>
<div class="card">
    <div class="card_text"></div>
</div>
<div class="card">
    <div class="card_text"></div>
</div>
0
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
0
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?