JSFiddle - React, Tailwind, and code Playground

by Derek Leung

HTML

<div class="block">龍</div>
<div class="block">龍</div>

CSS

div.block{
    border: 1px solid black;
    width: 100px;
    height: 100px;
    text-align: center;
    font-size: 80px;
    overflow: hidden;
}
div.block:first-child{
    padding-top: 50px;
}
div.block:last-child{
    padding-bottom: 50px;
}
*{
    box-sizing: border-box;
}