残念ではあるけど、displayでtableとtable-cellを使う。
.outer {
  display: table;
  height: 100px;
}
.inner {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
<div class="outer">
  <div class="inner">
    <p>ほげ</p>
  </div>
</div>
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
残念ではあるけど、displayでtableとtable-cellを使う。
.outer {
  display: table;
  height: 100px;
}
.inner {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
<div class="outer">
  <div class="inner">
    <p>ほげ</p>
  </div>
</div>
Register as a new user and use Qiita more conveniently
Go to list of users who liked