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を透明にし、モバイル画面のトグルで同じ navebar を表示する方法。メディアクエリを使用して。
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; } }