div+css浮动层居中的方法
2012-3-18 11:33 Sunday  

分类: CSS 标签: 居中 浮动 margin px left 评论(67) 浏览(41102)

想要 <div class="fdiv">我要浮动并居中</div>浮动并居中的方法其实很简单,代码如下:

.fdiv{
width: 300px;
height: 200px;
position: absolute;
background: #fff;
border: 1px solid #bbb;
left: 50%;
top: 50%;
margin-left: -150px;
margin-top: -100px;
}

滚动浏览器滚动条都有效哦。。

这个你看明白了吗?

 

背景透明度

opacity: 0.9;filter:alpha(opacity=90);

+1 21

留下你的看法: