我做了2个小时,没有任何反应-_-')
.Image-header {
text-align:center;
margin-left:auto;
margin-right:auto;
display:block;
}
.Page-background {
text-align: center;
background-position: top;
}
我非常感谢每一个有帮助的答案:)
答案 0 :(得分:0)
将图像放入div并设置div对齐中心。 要么 把图像放在里面
答案 1 :(得分:0)
查看您发布的代码,我建议采用以下方法:
.Image-header {
text-align:center;
margin: 0 auto;
display:block;
}
.Page-background {
background-position: center top;
margin-top: -50px; // arbitrary, to tune
padding-top: 50px; // to fix article content, same as above
}
我还建议您.Page-background
使用background-color
代替background-image
,并按照BEM命名标准(.header__image
和{{1}重命名您的课程}})