簡體   English   中英

如果屏幕寬度小於特定寬度,則隱藏導航欄的某些鏈接

[英]Hide certain links of a navbar if the screen width is less than a certain width

我的導航欄應該響應。 我怎樣可以隱藏標識鏈接分開等環節稱為logo當屏幕尺寸小於680像素? 謝謝。

嘗試使用像這樣的media查詢

@media screen and (max-width: 680px) {
    .navbar a:not(:first-child) {
        display: none;
    }
}

假設您的徽標鏈接是錨點( a

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM