问题描述
我有一个固定的导航栏,如果页面具有滚动条,它可以正确定位自己。但是我的某些页面显示时没有滚动条,然后导航栏跳到右侧。
我的导航栏的CSS:
response.css('.star-rating').xpath("@class").extract()
这使它在滚动条可见时起作用:
header#masthead {
position: fixed;
width: 100%;
}
尝试此操作没有成功,没有任何反应:
body{
overflow: scroll;
}
My website
解决方法
header#masthead {
position: fixed;
width: 100vw;
}
是解决方案!