如何使用 Tailwind CSS 删除输入类型 Number 上的箭头
我有一个数字类型的输入,我想删除默认情况下附带的增量/减量箭头。我如何使用 Tailwind CSS 做到这一点?我查了一下,但没有发现任何可以解决这个问题的方法。
input type="number" placeholder="Numéro de téléphone" className="border p-4 outline-none"
I have an input of type number, and I want to remove the increment/decrement arrows that come with it by default. How can I do that with Tailwind CSS? I looked up for it but found nothing that solves this problem.
input type="number" placeholder="Numéro de téléphone" className="border p-4 outline-none"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(11)
所以我找到了解决方案 ->在你的 global.css 上你必须添加
So i found the solution for this -> On your global.css you have to add
发现了一种纯类方法,可以在 Firefox 和 Chrome 上使用,
感谢这些参考:
Discovered a pure class way to do this that works both with Firefox and Chrome
Thanks to these references:
添加到@Tyron 答案是正确的。
添加与 Mozilla
参考的兼容性 w3schools/howto/howto_css_hide_arrow_number
Adding to @Tyron answer which is correct.
Add compatibility to Mozilla
ref w3schools/howto/howto_css_hide_arrow_number
将其添加到您的 tailwind
config.js
中并用作普通的 tailwind 类。add this to your tailwind
config.js
and use as a normal tailwind class.我将其添加到我的 global.css 中以隐藏特定 className 中的箭头:
I add this into my global.css to hide an arrow from specific className:
您可以尝试使用选择组件,输入没有箭头。
适用于所有选择的解决方案
适用于特定类型的解决方案
使用 CDN
You can try using select component, inputs don't have arrows.
Solution for all selects
Solution for specific types
With CDN
我将其添加到主 css 文件中以修复 tailwinds
appearance-none
类:I added this to the main css file to fix tailwinds
appearance-none
class:这是顺风的,这里有一个链接,你可以看一下
tailwind
并使用普通 css :
this with tailwind here a link you can look on it
tailwind
and with normal css :
要删除箭头,您需要将
appearance
设置为none
(来源[https://www.w3schools.com/howto/howto_css_hide_arrow_number.asp])如果您使用 TailwindCSS 3你可以尝试这个: https://tailwindcss.com/docs/appearance,如果您使用 TailwindCSS 2,则:https://v2.tailwindcss.com/docs/appearance。
我希望这能解决您的问题。
To remove the arrows you need to set
appearance
tonone
(source[https://www.w3schools.com/howto/howto_css_hide_arrow_number.asp])If you use TailwindCSS 3 you could try this: https://tailwindcss.com/docs/appearance, if you use TailwindCSS 2, this: https://v2.tailwindcss.com/docs/appearance.
I hope this solves your issue.
对于 Tailwind,您可以搜索“appearance-none”
https://tailwindcss.com/docs/appearance
这删除了不同输入类型的默认插件行为。
For Tailwind, you can search "appearance-none"
https://tailwindcss.com/docs/appearance
This removed the default addon behaviors of different input types.