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.

li(リスト)タグ内の画像を中央表示(センタリング)するには

Posted at

#li(リスト)タグ内の画像を中央表示(センタリング)するには

##背景
liタグ内の画像を中央表示したくてtext-align:center;vertical-align:middle;を試すもうまくいかない!

##試したこと
text-align: center;vertical-align: middle;を設定してみる。text-align: center;は効いて左右中心になるも上下は中央配置にならない。
それもそのはず、vertical-align: middle;が使えるのはインライン要素と**テーブルセル(display:table-cell;)**のみ!


<ul>
  <li><img src="" .....></li>
  <li><img src="" .....></li>
  <li><img src="" .....></li>
</ul>
ul>li{
  text-align: center;
  vertical-align: middle;
}

image.png

##解決法
display:****が効くのは基本的に指定した要素の子要素まで。
そこで、中央配置にしたいimgタグの親要素であるliタグにdisplay:flex;align-items: center;justify-content:center;を設定。
そうすると、liタグ内の画像の中央配置ができる。

ul{
  display: flex;
  list-style: none;
}

ul>li{
  border: 1px solid black;
  display:flex;
  align-items: center;
  justify-content: center;
}

image.png

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?