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?

More than 3 years have passed since last update.

HTMLで箇条書きリストを作成

Posted at

はじめに

またまたhtmlの記述方法を忘れていたので投稿しようと思います。

今回は箇条書きのレイアウトです。
ヘッダーの navで使用される所をよく見ます。

ul要素・li要素

  • ul要素
    順序のないリストを示すブロックレベル要素です。li要素と一緒に使用します。

  • li要素

リストの項目を示すブロックレベル要素です。ul要素の子要素として記述します。

.html
<ul class="lists">
  <li class="list">リスト1</li>
  <li class="list">リスト2</li>
  <li class="list">リスト3</li>
  <li class="list">リスト4</li>
</ul>

スクリーンショット 2021-06-25 21.53.50(2).png

このように表示する事ができます。

また、箇条書きの黒点が邪魔な時が消す事ができます

.css
.list{
  list-style: none;
}

スクリーンショット 2021-06-25 21.56.36(2).png

余談

olを使って順序をつけた記述もできます。

.html
<ol>
 <li class="list">リスト1</li>
  <li class="list">リスト2</li>
  <li class="list">リスト3</li>
  <li class="list">リスト4</li>
</ol>
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?