文字和元素 水平垂直居中
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class="box">
<div class="boxContent">1sasdasdasdterterterteterteteterta</span>
</div>
</body>
</html>
.box{
position:relative;
width:500px;
height:500px;
background-color:green;
}
.boxContent{
position: absolute;
/* width:200px;
height:200px; */
background-color:red;
top:50%;
left:50%;
/* margin-top:-100px; */
transform:translate(-50%, -50%);
/* margin-left:-100px; */
word-break: break-all;
word-wrap: break-word;
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。