<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>盒子居中和内容居中</title>
<style>
.father{
width: 800px;
height: 500px;
background-color: red;
/*text-align: center;*/
margin:0 auto;
}
.son{
width: 100px;
height: 100px;
background-color: blue;
}
</style>
</head>
<body>
<!--
1.text-align:center;和margin:0 auto;区别
text-align: center;作用
设置盒子中存储的文字/图片水平居中
margin:0 auto;作用
让盒子自己水平居中
-->
<div class="father">
我是文字<br/>
<img src="images/girl.jpg" alt="">
<!--<div class="son"></div>-->
</div>
</body>
</html>
原文地址:https://www.cnblogs.com/yindanny/p/11679035.html
时间: 2024-11-08 16:34:50