在我的网站上,我有一些背景和标题。标题和背景从顶部移动~70px! 我的网站:http://www.scrumplex.ga/
答案 0 :(得分:2)
问题是您的<p class="p-white">
在顶部和底部有21.333px
页边距。在你的CSS中覆盖它,那个白色区域应该消失:
p.p-white {
margin-top: 0;
}
答案 1 :(得分:1)
在标题之前有包含iframe的div。
它具有内联样式using-declaration:
using typename (opt) nested-name-specifier unqualified-id ;
using :: unqualified-id ;
unqualified-id:
identifier
operator-function-id
conversion-function-id
literal-operator-id
~ class-name
~ decltype-specifier
template-id
literal-operator-id:
operator string-literal identifier
operator user-defined-string-literal
如果您确实需要将其设置为修复,请以相同的样式添加style="position: fixed; z-index: -99; width: 100%; height: 100%;
。像这样。
top:0
看看它是否适合你。!