爱普生出现代码oxea怎么办
发布网友
发布时间:2022-06-26 13:29
我来回答
共1个回答
热心网友
时间:2024-12-02 09:33
<html>
<style>
/* reset */
*{margin:0;padding:0;border:0;}
img{display:block;}
/* 布局 */
.container{width:400px;height:300px;position:relative;}
img{width:100%;*{pading:0;margin:0;}这样的写法好处是写起来很简单,但是*是通配符,需要把所有的标签都遍历一遍,当网站较大时,样式比较多,这样写就大大的加强了网站运行的负载,会使网站加载的时候需要很长一段时间,因此一般大型的网站都有分层次的一套初始化样式。
常用的reset.css
* {;top:0;}
/* 图像透明度&zindex */
img:nth-child(n){filter:alpha(opacity=1);opacity: 1;z-index:999;}
</style>
<script>
var t = function(){
var i = 0;
while(i<6){
i++;
var tom = function (){document.getElementById('x'+i).style.zIndex=9999;
setTimeout(tom,3000);
};
};
t();