簡體   English   中英

底部移動水平滾動條?

[英]Mobile horizontal scroll bar at the bottom?

當我在移動設備上查看我的網站時,底部有一個水平滾動條,您可以將內容拖出屏幕。 我嘗試了隱藏的溢出-x,但它沒有刪除欄。

https://www.feastfromhome.com/

有什么建議嗎?

謝謝

問題來自您的<header>元素更准確地說是在其偽 ::after 元素上...

實際上,為了使徽標居中並提供合適的尺寸,寬度設置為 160%...對嗎? 這就是為什么你有這個滾動條

overflow:hidden應用到父級,因此:

@media screen and (max-width: 1100px)
    .bgimg-1 {
      background-position: center top;
      background-repeat: no-repeat;
      top: 0;
      background-size: 180%;
      min-height: 51%;
      overflow: hidden;
    }

暫無
暫無

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

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