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

/* ===============
左右中央寄せ
==================*/
.mi_auto_h .box--item {
  margin-inline: auto;
}


/* ===============
装飾のための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.