关于H1的居中

如果使用,居中居然没有效果:

.masthead{
	
	margin-left:auto;
	margin-right:auto;
	
}

.masthead h1{
	font-size:60px;
}

无奈之下,我只能加了text-align

.masthead{
	
	text-align:center;
	margin-left:auto;
	margin-right:auto;
	
}

.masthead h1{
	font-size:60px;
}

 这样在Chrome里面居中就没有问题了。

猜你喜欢

转载自tntxia.iteye.com/blog/2368210
h1