设置div元素中的div元素居中显示
Posted 1500418882qqcom
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置div元素中的div元素居中显示相关的知识,希望对你有一定的参考价值。
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 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元素中的div元素居中显示的主要内容,如果未能解决你的问题,请参考以下文章
css如何设置能让一个div元素覆盖在div元素上后下面的div元素中的文字不显示出来