Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在处理一个使用 Zurb 基金会的项目。
我现在有一个问题,当浏览器处于小分辨率时如何显示箭头?
当屏幕尺寸小于断点时,它总是消失。
即使视图变小,我也想使用直接导航。
可能不是最优雅的解决方案(在理想的世界中,您会找到并编辑此行为的来源而不是推翻它),但对于简单的修复,请将其添加到您的 css 或添加到foundation.css中的现有媒体查询中,围绕行1052:
@media only screen and (max-width: 767px) { .orbit-wrapper .slider-nav { display: block !important; } }
基础构建:3.5.2
轨道版本:1.4.0