css文字上下左右居中对齐

文章描述:

css指定模块高度然后是文字上下居中对齐方式

html

<div class="text">
    <a>小桥流水人家</a>
</div>

style

body {
	background:#fff;
}
.text {
	width:600px;
	height:320px;
	background:#f1f1f1;
	border:1px solid #eee;
}
.text {
	display:-webkit-box;
	-moz-box-align:center;
	-webkit-box-align:center;
	-o-box-align:center;
}
.text a {
	display:block;
	text-align:center;
	margin:0 auto;
	font-size:2em;
}

 

发布时间:2022/05/10

发表评论