多行文本居中

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>

</style>

.wrapper {
width: 200px;
height: 200px;
background: skyblue;
font-size:0
}
.wrapper:before {
content: '.';
display: inline-block;
vertical-align: middle;
height: 100%;
}
.content {
display: inline-block;
text-align: center;
font-size:16px
}

</style>
</head>
<body>
<div class="wrapper">
<div class="content">多行文字居中 多行文字居中 多行文字居中 </div>
</div>
</body>
</html>

posted @ 2015-05-19 17:27  whuper  阅读(166)  评论(0编辑  收藏  举报