JSFiddle - React, Tailwind, and code Playground

by deathstalkersid

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
    <div class="row px-4 mt-4">
        <div class="col-md-6 row">
            <div class="col-2 col-form-label">
                Label
            </div>
            <div class="col-10">
                <input type="text" class="form-control">
            </div>
        </div>
        <div class="col-md-6 row">
            <div class="col-2 col-form-label">
                Label
            </div>
            <div class="col-10">
                <input type="text" class="form-control">
            </div>
        </div>        
    </div>
    <div class="row px-4 mt-4">
        <div class="col-md-6 row">
            <div class="col-2 col-form-label">
                Label
            </div>
            <div class="col-10">
                <input type="text" class="form-control">
            </div>
        </div>
        <div class="col-md-6 row">
            <div class="col-2 col-form-label">
                Label
            </div>
            <div class="col-10">
                <input type="text" class="form-control">
            </div>
        </div>
    </div>
</body>
</html>