JSFiddle - React, Tailwind, and code Playground

by lun471k

HTML

<input type="text">
<input type="text">
<input type="text">
    
<div class="block">
    <input type="text">
    <input type="text">
    <input type="text">
</div>

CSS

.block {
    margin-top:20px;
    background-color:#DDD;
    padding:5px;
    width:200px;
}

.block input {
    display:block; /* <-- This is the important part */
}