****让文字在div中水平居中****
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Center</title>
<style type="text/css">
.content{
display: table-cell;
vertical-align: middle;
width: 200px;height: 200px;
border: 1px solid red;
text-align: center;
}
</style>
</head>
<body>
<div class="content">
<div>文本1</div>//换成p标签也可以
<div>文本2</div>//换成p标签也可以
</div>
</body>
</html>
css样式代码.content可以让content中内容水平垂直居中