zoukankan
html css js c++ java
iframe 挡住 DIV的解决办法
IE版本
是否支持
IE5.5
否
IE6
是
IE7
是
IE8
是
Code
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<
html
xmlns
="http://www.w3.org/1999/xhtml"
>
<
head
>
<
title
>
Untitled Page
</
title
>
</
head
>
<
body
>
<
form
>
<
select
style
="top: 100px; left: 100px; 300px;"
>
<
option
>
asdf
</
option
>
<
option
>
asdf
</
option
>
</
select
>
<
div
style
="position: absolute; top: 0px; left: 0px; 1000px; height: 1000px;
background-color: Blue;"
>
<
iframe
src
=""
frameborder
="0"
style
="position:relative; top:0px; left:0px; 100%; height:100%; z-index:-1;filter:alpha(opacity=0)"
></
iframe
>
</
div
>
</
form
>
</
body
>
</
html
>
查看全文
相关阅读:
创建数据库和表例子
Python标准库之ConfigParser模块
Python标准库之shelve模块(序列化与反序列化)
Python标准库之shutil模块
Python标准库之sys模块
Python标准库之os模块
Python标准库Random
Python标准库之时间模块time与datatime模块详解
Python模块导入详解
Python目录结构规范
原文地址:https://www.cnblogs.com/jgjgjg23/p/1490619.html
最新文章
事务传播行为
JDBC相关总结
JVM总结
JVM调优总结
Docker 应用实例
Docker 简单应用
正则表达式:Python 模块 re 简介
JavaScript:自动生成博文目录导航
Python:Python 3.x 的革新
Python :集合类型(set)
热门文章
博皮设计:HTML/CSS/Javascript 源码共享
Linux基础命令
C#中泛型的使用
Linq简单使用
C#操作SQL Server数据库
三层架构实例
C#中的线程(三) 使用多线程
C#中的线程(二) 线程同步基础
C#中的线程(一)入门
ADO.NET怎删改+vs 2013 C#
Copyright © 2011-2022 走看看