<!-- 左右中央寄せ -->
<div class="box m_auto_h">
  <div class="box--item">
    marginで左右中央
  </div>
</div>
.box--item {
  width: fit-content; /* widthの指定は必須 */
}

/* ===============
左右中央寄せ
==================*/
.m_auto_h .box--item {
  margin: 0 auto; /* margin: auto;でもOK */
}


/* ===============
装飾のためのCSS
==================*/
.box {
  background-color: #efefef;
  height: 200px;
}
.box + .box {
  margin-top: 40px;
}
.box--item {
  background-color: #2eb7cf;
  color: #fff;
  font-weight: bold;
  padding: 20px;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.