首页 > 代码库 > 设置div中的div居中显示
设置div中的div居中显示
设置div中的div居中显示
方法一、
<div class=‘big‘> <div class=‘small‘>box1</div> </div>style样式:.big{ height:200px; width:200px; border:black solid 1px; position:absolute; left:150px; }.small{ height:100px; width:100px; background-color:green; position:relative; left:100px; top:100px; margin-top:-50px; margin-left:-50px; border:black solid 1px;}
方法二、
div class=‘big2‘> <div class=‘small2‘>box3</div> </div>.big2{ height:200px; width:200px; border:black solid 1px; text-align:center;}.small2{ height:100px; width:100px; background-color:green; margin:50px auto; //外面的div高度的一半 border:black solid 1px;}
设置div中的div居中显示
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。