JSFiddle - React, Tailwind, and code Playground

by tellnes

HTML

<div class="wrapper">
    <div id="v1">Some text</div>
</div>

<div class="wrapper">
    <div id="v2">This text is to big.</div>
</div>

CSS

.wrapper {
    border: 1px solid #F00;
    width: 100px;
    height: 1em;
    margin-bottom: 1em;
}

#v1 {
    display: block;
}
#v2 {
    display: none;
}