JSFiddle - React, Tailwind, and code Playground

by jblasco

HTML

<input type="text" />
<input type="text" />
<input type="text" />
<input type="text" />

CSS

* {
    margin: 0px;
    padding: 0px;
    outline: none;
}

input[type="text"] {
    border: 1px solid #CCC;
    border-radius: 4px;
    margin: 10px;
    padding: 2px 0px 2px 8px;
    font-size: 12px;
    line-height: 12px;
    font-family: Arial, sans-serif;
}

JavaScript

$(document).ready( function() {
   
    setInterval( function() {
        $(':focus').css('border-color', '#06C');
    }, 3000);
    
});