JSFiddle - React, Tailwind, and code Playground

by yozuul

HTML

<div class="limiter">
    <div class="line"></div>
</div>

CSS

body { margin: 0; }

.limiter {
    max-width: 500px;
    min-height: 100px;
    
    margin: auto;
    
    background: #aaa;
}

.line {
    height: 30px;
    position: relative;
}

.line:before {
    content: "";
    
    position: absolute;
    top: 0;       left: -9999px;
    bottom: 0;    right: 0;
    
    background: #444;
}