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.
我想隐藏所有屏幕尺寸的导航栏,除了 480 像素和更小的屏幕尺寸,我希望显示“汉堡包”。我怎样才能做到这一点?谢谢你。
在你的 div 上使用visible-xs类。例如,
<div class="visible-xs any-other-class-you-may-have"> ... </div>
使用媒体查询..
.navbar { display: none; } @media (max-width: 480px) { .navbar { display: block; } }
http://www.codeply.com/go/TzpIH3b0uH