Div被Select挡住的解决办法

来源:互联网 发布:园林景观软件 编辑:程序博客网 时间:2024/05/01 13:54

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Example</title>
</head>
<body>
 <div style="z-index:1;position:absolute;width:100;height:22;overflow:hidden;" onmouseover="this.style.height=100;" onmouseout="this.style.height=22;">
  <iframe style="position:absolute;z-index:-1;width:100%;height:100%;top:0;left:0;scrolling:yes;" frameborder="0" src="about:blank">
  </iframe>
  a<br>
  b<br>
  c<br>
  d<br>
  e
 </div>

 <select style="width:200">
  <option>test0
  <option>test1
  <option>test2
  <option>test3
 </select>
</body>
</html>