ie6下实现position:fixed效果实例介绍

2020-05-02 08:38:44易采站长站整理

left:20px;
top:20px;
}
</style>
</head>
<body>
<div class=”first”>
<div class=”fixed”></div>
</div>
</body>
</html>

以上代码完美实现了我们想要的功能,在第一段实例基础上添加如下代码:


*html
{
background-image:url(about:blank);
background-attachment:fixed;
}