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

拾起来提升-------布局

时间:2016-06-12 18:18:22      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

div垂直居中

固定大小:

<div class="box"></div>

<style>
.box{
  position:absolute;
  width:200px; 
  height:200px;
  top:50%;
  left:50%;
  margin-left:-100px;
  margin-top:-100px;
}
</style>

不固定大小:

<div class="box"></div>

<style>
.box{
 position:fixed;

width:50%; height:50%; left:50%; top:50%; -webkit-transform: translateX(-50%) translateY(-50%); } </style>

固定一侧。另一侧自适应

<div style="float:left; width:100%; height:200px;">
   <div style="margin-left:200px; background:#000; height:200px"></div>
</div>
<div style="float:left; width:200px; height:200px; margin-left:-100%; background:yellow"></div>

 

拾起来提升-------布局

标签:

原文地址:http://www.cnblogs.com/feiyang1989/p/5578090.html

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