JSFiddle - React, Tailwind, and code Playground

by Artem Borovikov

HTML

<div class="wrapper">
    <div class="slide">
        <div class="card">
            <div class="header">
                123
            </div>
        </div>
    </div>
</div>

CSS

.wrapper {
    display: flex;
    height: 320px;
    background-color: red;
}

.slide {
    display: flex;
    width: 320px;
    background-color: blue;
}

.card {
    display: flex;
    width: 100%;
    background: green;
}

.header {
    background: black;
}