<body>
<div>我是定宽块状元素,我要水平居中显示。</div>
</body>
</html><style>
div{
border:1px solid red;
width:200px;
margin:20px auto;
}
</style>那个div元素为什么没有撑开到撑满浏览器。marign:20px auto;不应该是上下边距20px,左右水平居中么
2 回答
我要开发地图系统
TA贡献29条经验 获得超13个赞
marign是元素之间的距离,上下会重叠,也会无效。
详情请观看张鑫旭老师的课程——
CSS深入理解之margin
位置在: 慕课网首页---- 前端开发 ---- 分类目录 ---- 基础---- html / css ,进去就能找到。
链接:http://www.imooc.com/learn/680
另外,你还可以看张鑫旭老师其它的课程。
慕粉3882219
TA贡献2条经验 获得超1个赞
body{height:100%}
div {height:100%; background:#ff0000; position:absolute; width:200px;margin:20px auto;}
- 2 回答
- 0 关注
- 1364 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消