0
1

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.

リスト

Last updated at Posted at 2018-11-30

#ul & ol & liについて
主に箇条書きを作る方法で使用される
classをつけても大丈夫
使用用途によって「 ul 」か「 ol 」を選んで「 li 」をくくる

コード 内容
ul 番号つかないリスト(unordered list)
ol 番号付きリスト(ordered list)
li ulまたはolでくくられている中身(list item)
このように記載する
<ul>
  <li></li>
  <li></li>
  <li></li>
</ul>

#dl & dt & ddについて
言葉とその言葉の説明を組み合わせたリストの際に用いる

コード 内容
dl dtとddをくくるもの(description list)
dt 言葉(description term)
dd 言葉の説明(description,definition>)
このように記載する
<dl>
  <dt>りんご</dt>
  <dd>赤い</dd>
  <dd>美味しい</dd>
</dl>
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?