JSFiddle - React, Tailwind, and code Playground

HTML

<div class="box">
    <img src="http://tinyurl.com/p63a5eq">
    <h2>甜甜圈</h2>
</div>

CSS

.box {
    width: 150px;
    height:auto;
    border: 1px solid gray;
    border-radius:5px;
    text-align:center;
}
.box img {
    margin: 0 auto;
}
.box h2 {
    margin:0;
    width: 100%;
    font-size: 1em;
    color: #5b5b5b;
    background-color: #f1f1f1;
    border-top: 1px solid gray;
    height: 30px;
    line-height: 30px;
    border-radius:0 0 5px 5px;
}