JSFiddle - React, Tailwind, and code Playground
by gothic
HTML
<div class="container">
<h1>你们好</h1>
</div>
CSS
.container {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-moz-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-moz-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
height: 100px;
background: #222;
color: red;
}