Appearance
Utilities to disable the styling of the original form controls.
Widely available
This feature is well established and works across many devices and browser versions.
Chrome
Edge
Firefox
Safari
| Class | Style |
|---|---|
a-auto | appearance: auto; |
a-none | appearance: none; |
None
Initial value
Removes all default styling from the element.
<button class="a-none tc-white px-5 py-1">Send</button>Auto
Allows the element to use the default styling provided by the browser.
<button class="a-auto tc-white 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.
Targeting different viewports
You can combine responsive breakpoints like sm:a-*, md:a-*, lg:a-*, and xxl:a-* to allow targeting specific utilities in different viewports.
Targeting hover states
Alternatively, you can apply :hover by using h:a-* utility to override elements and change their values when hovering over them.