码迷,mamicode.com
首页 > 其他好文 > 详细

设置div元素中的div元素居中显示

时间:2020-07-01 12:53:44      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:htm   round   order   box   highlight   div   width   ack   元素   

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元素居中显示

标签:htm   round   order   box   highlight   div   width   ack   元素   

原文地址:https://www.cnblogs.com/1500418882qqcom/p/13218487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!