微信扫一扫明明已经定位了,为什么缩小浏览器窗口就看不见了呢,是定位的父标签不对吗?
<div class="weixing"></div>
.weixing
{ width: 150px;
height: 200px;
background: url(../images/weixin.jpg) no-repeat;
position: absolute;
left: 1450px;
top: 600px;
z-index: 1000;
}
position: absolute;和position: fixed;看你需要的效果择一。两者的相对定位也不一样,fixed是相对于浏览器窗口进行定位的,可以使用left、right、top、bottom来进行定位。