盒模型里的内容如何排版
比如把文字在空间中居中
比如把文字在空间中居中
2017-01-11
居中,一般有两种,内容居中就用text-align:center;让整个div居中,前提为这个div设置width和height值,利用margin:0 auto;来设置。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>居中</title>
<style type="text/css">
.content{
width: 100px;
height: 100px;
margin: 0 auto;
}
</style>
</head>
<body>
<div class="content">I Love You</div>
</body>
</html>>
举报