为了账号安全,请及时绑定邮箱和手机立即绑定

margin的问题

http://img1.sycdn.imooc.com//5de3cba60001e6f809040382.jpg

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>定宽块状元素水平居中</title>

<style>

div{

    border:1px solid red;

width:200px;

margin:20px auto;

}


</style>

</head>


<body>

<div>我是定宽块状元素,我要水平居中显示。</div>

</body>

</html><!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>定宽块状元素水平居中</title>

<style>

div{

    border:1px solid red;

width:200px;

margin:20px auto;

}


</style>

</head>


<body>

<div>我是定宽块状元素,我要水平居中显示。</div>

</body>

</html>

这句的意思是上下边距20px,左右水平居中,现在显示出来的上边距可以看出来是20px,但是下面还有那么宽的距离不止是20px啊?

正在回答

3 回答

像这样

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>定宽块状元素水平居中</title>

<style>

div{

    border:1px solid red;

width:200px;

}

.a{

margin:0 auto 20px auto;

}

.b{

    margin:0 auto 0 auto;

   

}

</style>

</head>


<body>

<div class="a">我是定宽块状元素,我要水平居中显示。</div>

<div class="b">哈哈哈哈哈</div>

</body>

</html>


0 回复 有任何疑惑可以回复我~

你在这个div下面再加一个div,你就能理解了

0 回复 有任何疑惑可以回复我~

进行绝对定位可以解决这个问题

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识HTML(5)+CSS(3)-升级版
  • 参与学习       1225849    人
  • 解答问题       18235    个

HTML(5)+CSS(3)基础教程8小时带领大家步步深入学习标签用法和意义

进入课程

margin的问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信