Appearance
Utilities to disable the styling of the original form controls.
| Class | Style |
|---|---|
a-auto | appearance: auto |
a-none | appearance: none |
None
Initial value
Removes all default styling from the element.
<button class="a-none px-5 py-1">Send</button>Auto
Allows the element to use the default styling provided by the browser.
<button class="a-auto px-5 py-1">Send</button>Using utility variants
Learn how to override existing utilities based on the user's screen size or other factors, such as hover states.
Using media queries
You can combine responsive breakpoints like sm:a-*, md:a-*, lg:a-*, and xxl:a-* to allow targeting specific utilities in different viewports.
Using hover states
Alternatively, you can apply :hover by using h:a-* utility to override elements and change their values when hovering over them.