Skip to content

Instantly share code, notes, and snippets.

@binnng
Last active December 16, 2015 06:39
Show Gist options
  • Select an option

  • Save binnng/5393320 to your computer and use it in GitHub Desktop.

Select an option

Save binnng/5393320 to your computer and use it in GitHub Desktop.
多行文字居中显示
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<style>
.box{
width: 200px;
height: 200px;
background: #CCC;
display: table-cell;
vertical-align: middle;
text-align: center;
}
</style>
<div class="box">
<span>
这里是多行文字多行文字这里是多行文字多行文字这里是多行文字多行文字这里是多行文字多行文字这里是多行文字多行文字这里是多行文字多行文字
</span>
</div>
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment