LoginSignup
2
2

More than 5 years have passed since last update.

画像の垂直中央表示

Posted at

html

qiita.html
<div>
    <img src="img_hoge.png" alt="画像" />
</div>

css

qiita.css
div {
  display: table-cell;
  width: 150px;
  height: 100px;
  line-height: 0;
  vertical-align: middle;
  border: 1px solid #CCC;
  text-align: center;
  layout-grid-line: 100px;
}
2
2
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
2
2