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.
大家好,如何在HTML中为桌面透明nvabar并在移动屏幕上切换时显示相同的导航栏。?通过使用媒体查询。
在 HTML 中:
<div class="nav"> // opened navbar codes here </div> <div class="toggled"> // toggled navbar codes here </div>
在 CSS 中:
.toogle{ display:none; } @media only screen and (max-width: 500px){ .toogle{ display:block; } .nav{ display:none; } }