JSFiddle - React, Tailwind, and code Playground

HTML

<div class="content-box">
    <div class="box">
        <span>No photo</span>
    </div>
</div>

CSS

.content-box {
    width: 100px;
    height: 100px;
    margin: 20px auto;
}
.box {
    width:  100%;
    height: 100%;
    background: whitesmoke;
    border: 7px solid silver;
    text-align: center;
}
.box span {
    font-size: 18px;
    line-height: 100px;
}