如何删除CSS的水平条?

时间:2022-12-06 13:24:28

My friend was helping me change some coding around on my site the other day and didn't notice until today this annoying horizontal bar on the bottom, indicating something isn't right. What part of my code is wrong that is causing this? It may not appear of your screen is large.

我的朋友前几天帮我改变了我网站上的一些编码,直到今天才发现底部这个烦人的横条,表明事情不对。我的代码的哪一部分是错误的?它可能不会出现您的屏幕很大。

This is my website:

这是我的网站:

http://alexkooblog.com/

2 个解决方案

#1


Just paste below code in your main css file or main page and code is

只需在主css文件或主页面中粘贴下面的代码即可

html{
     overflow-x: hidden;
}

i hope this will help to resolve your problem.

我希望这有助于解决您的问题。

#2


Try adding this line in your css

尝试在你的CSS中添加这一行

#undefined-sticky-wrapper{
  overflow:hidden;
}

the wrapper going out of box.

包装盒开箱即用。

#1


Just paste below code in your main css file or main page and code is

只需在主css文件或主页面中粘贴下面的代码即可

html{
     overflow-x: hidden;
}

i hope this will help to resolve your problem.

我希望这有助于解决您的问题。

#2


Try adding this line in your css

尝试在你的CSS中添加这一行

#undefined-sticky-wrapper{
  overflow:hidden;
}

the wrapper going out of box.

包装盒开箱即用。