答案 0 :(得分:4)
使用Firefox的Firebug,Safari的WebInspector或IE的开发人员工具等开发人员工具来检查文档。那些可能会显示你的,.previous_page
的底部边距会导致与h1
的上边距发生冲突。
答案 1 :(得分:2)
它正在触及浮动的“上一页”链接并环绕它。它是左对齐的,但看起来它的中心位置是因为它击中浮动的位置。
尝试:
h1 { clear: left }
答案 2 :(得分:1)
尝试将h1样式更改为:
#flypage h1 {
float: left;
margin-bottom: 20px;
margin-top: 20px;
text-align: left !important;
width: 100%;
}