|
|
|
|
|
by 9dev
878 days ago
|
|
If horizontal reading bothers you so much it resembles a hellish nightmare (Dante would like to have a word with you), nobody stops you from going like this: <button class="
flex
bg-blue-400
p-4
">Submit</button>
And you actually can target other components. There are lots of sibling selectors, including named groups: <label class="group/field">
<input type="text" />
<span class="order-1 text-black group-focus-within/field:text-blue-500">Name</span>
</label>
|
|