JSFiddle - React, Tailwind, and code Playground

by chrisjg

HTML

<article>
    <form>
        Some sort of form...
    </form>
    <div class="success">
        Success!
    </div>
</article>

CSS

article form ~ .success {
    width: 80%;
    background: lightgreen;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
form {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border: 1px solid blue;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}