JSFiddle - React, Tailwind, and code Playground
by Malik Naik
HTML
<input id="text-element" type="text">
<input id="submit-element" type="submit">
CSS
#text-element:focus + #submit-element{
background: blue;
}
by Malik Naik
<input id="text-element" type="text">
<input id="submit-element" type="submit">
#text-element:focus + #submit-element{
background: blue;
}