css之div中纯文字单行和多行垂直居中

先上效果图

css之div中纯文字单行和多行垂直居中

<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.wrap1 {
width: 200px;
height: 200px;
background: red;
line-height: 200px;
} .wrap2 {
width: 200px;
height: 200px;
background: blue;
display: table-cell;
vertical-align: middle;
}
</style>
</head> <body>
<div class="wrap1">
wrap1中的文字.
</div>
<div class="wrap2">
wrap2中的文字,wrap2中的文字,wrap2中的文字,wrap2中的文字,wrap2中的文字。
</div>
</body> </html>
上一篇:设计模式(一)简单工厂(创建型)(Java&&PHP)


下一篇:通过AOP自定义注解实现日志管理