Is there a way to use vendor prefixes in tailwind css?
.search::-webkit-search-cancel-button{
display: none;
}
Is there a way to use vendor prefixes in tailwind css?
.search::-webkit-search-cancel-button{
display: none;
}
Copyright © 2021 Jogjafile Inc.
To apply styles to vendor-specific pseudo-classes or pseudo-elements in Tailwind, arbitrary variants can be used.
For example, to hide the
::-webkit-search-cancel-buttonon a specific<input>element: