Recall & Review
beginner
What is an arbitrary variant in Tailwind CSS?
An arbitrary variant lets you create custom CSS selectors inside square brackets to apply styles conditionally, beyond the built-in variants like hover or focus.
Click to reveal answer
intermediate
How do you write an arbitrary variant for a custom selector in Tailwind?
You write it inside square brackets before a colon, like
[&:has(input:checked)]:bg-green-500, which applies the style when the custom selector matches.Click to reveal answer
intermediate
Why use arbitrary variants instead of regular classes?
They let you target complex or dynamic states in CSS that Tailwind's default variants don't cover, like parent selectors or custom pseudo-classes.Click to reveal answer
intermediate
Example: What does
[&:has(input:checked)]:bg-blue-200 do?It applies a blue background to the element only if it contains an
input element that is checked, using the CSS :has() selector inside an arbitrary variant.Click to reveal answer
advanced
Can arbitrary variants be combined with responsive prefixes in Tailwind?
Yes! You can combine them like
md:[&:hover]:text-red-500 to apply styles on hover but only on medium screens and up.Click to reveal answer
How do you start writing an arbitrary variant in Tailwind CSS?
✗ Incorrect
Arbitrary variants use square brackets before a colon, like
[&:hover]:bg-red-500.Which CSS selector can you use inside an arbitrary variant to style a parent based on a child state?
✗ Incorrect
The
:has() selector lets you select a parent based on child elements, useful inside arbitrary variants.What does
sm:[&:focus-visible]:outline-none do?✗ Incorrect
The
sm: prefix applies styles on small screens and larger, combined with the arbitrary variant [&:focus-visible].Can arbitrary variants target pseudo-elements like ::before or ::after?
✗ Incorrect
You can target pseudo-elements inside arbitrary variants, for example
[&::before]:content-['Hello'].Which of these is a valid arbitrary variant syntax?
✗ Incorrect
Only square brackets are valid for arbitrary variants in Tailwind.
Explain how arbitrary variants in Tailwind CSS help you style elements with custom selectors.
Think about how you can write selectors that Tailwind does not provide by default.
You got /4 concepts.
Describe a real-life scenario where you would use an arbitrary variant with a custom selector in Tailwind.
Consider a form with checkboxes that change the container style.
You got /4 concepts.