【技术】ie6里position、margin-top、margin-left失效

原代码:

“红色带数字的心”其css为

.user-number{
margin-top: -30px;
margin-left: -15px;
position: absolute;}

ie7、ie8、ie9、google、firefox、360浏览器均正常,ie6出现下图情况

解决方法:

通过firefox的“控制台”-->“规则”,找到父层position,给父层添加zoom:1;添加后代码如下

.wrapper{
position: relative;
zoom:1}

改后图片

 

posted @ 2014-02-21 16:02  ybingbing_1213  Views(192)  Comments(0)    收藏  举报