扫码关注官方订阅号
Sign up Select an Option { locations.map((location,i)=>{ return( {location.city} ) }) } Sign up
我正在尝试使用tailwind css设计一个注册页面,但是当我使用flex align items to center属性时,整个表单会居中显示,并出现垂直滚动条,我无法去除垂直滚动。如果有人能提供一些方法来解决这个问题,那将非常好。
我无法找到滚动条。虽然,你可以通过在index.css文件中添加这个实用程序来隐藏滚动条。
index.css
隐藏
@layer utilities { /* Chrome, Safari and Opera */ .no-scrollbar::-webkit-scrollbar { display: none; } .no-scrollbar { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ } }
然后你只需要在你想要的div中添加no-scrollbar类。
no-scrollbar
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
我无法找到滚动条。虽然,你可以通过在
index.css文件中添加这个实用程序来隐藏滚动条。@layer utilities { /* Chrome, Safari and Opera */ .no-scrollbar::-webkit-scrollbar { display: none; } .no-scrollbar { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ } }然后你只需要在你想要的div中添加
no-scrollbar类。