html 锚点更改页面布局的问题
我正在帮助客户处理他的网站,其中一个页面使用页面锚点。它们可以工作,但是当它们处于活动状态时,它们会通过向上移动整个 div 来剪切页面顶部的大部分内容。
这是链接 http://hornblower-businesses.co.uk/hornblower-strategic-合作伙伴/
I am helping a client with his site, and one of the pages uses page anchors. They work, however when active they cut out a large proportion of the top of the page by shifting the entire div up.
Here's the link http://hornblower-businesses.co.uk/hornblower-strategic-partners/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在 main_body div 上设置了
overflow:hidden
。删除该规则或将其设置为overflow:visible;
。这将解决 div 向上移动的问题。不过,我认为您可能对列 div 的浮动/嵌套方式有另一个问题。You have
overflow:hidden
set on the main_body div. Remove that rule or set it tooverflow:visible;
. This will solve the div from shifting up. However I think you may have another problem with the way the column divs are being floated/nested.