Several situations where div is covered by iframe and their solutions

Several situations where div is covered by iframe and their solutions

Similar structures:

Copy code
The code is as follows:

<div></div><ifram src="<a href="http://caibaojian.com"></iframe">http://caibaojian.com"></iframe</a>>

The first one: the transparent background is blocked

When a div uses a transparent background, regardless of whether it is in (opacity or RGBA format), except for Chrome, all other browsers will show that the div is covered by the iframe.

Solution:

The div uses an opaque background or a transparent background image.

The second type: z-index is invalid in IE8

In IE, introducing video playback in an iframe will cause the z-index of the div to be invalid, that is, no matter what the z-index of the div is set to, it will be covered by the iframe. source

Solution:

Add a parameter wmode=opaque to the iframe address. If the address is: http://caibaojian.com, then change it to: http://caibaojian.com?wmode=opaque.

flash behind other elements

By the way, I saw that Flash also has this z-index invalid problem. The same is to add the above parameter to Flash


Copy code
The code is as follows:

<param name="wmode" value="transparent">

or


Copy code
The code is as follows:

<EMBED src="<a href="https://cdn.css-tricks.com/FlashAnimation.swf">https://cdn.css-tricks.com/FlashAnimation.swf</a>" type="application/x-shockwave-flash" wMode="Transparent">

Appendix: Some parameters of iframe

border


Copy code
The code is as follows:

<iframe border="3"></iframe>

Sets the width of the border around the frame

frameboder


Copy code
The code is as follows:

<iframe frameboder="0"></iframe>

Sets whether the border is 3-dimensional (0=no, 1=yes)

height,width


Copy code
The code is as follows:

<iframe height="31" width="88"></iframe>

Set the width and height of the border

scrolling


Copy code
The code is as follows:

<iframe scrolling="no"></iframe>

Is there a scroll bar (yes, no, auto)

src


Copy code
The code is as follows:

<iframe src="girl.gif"></iframe>

Specify the file or image called by the iframe (html,htm,gif,jpeg,jpg,png,txt,*.*)

Summary <br />The above is the entire content of this article. I hope it will be of some help to your study or work. If you have any questions, you can leave a message to communicate.

<<:  Element Timeline implementation

>>:  Some problems that may be caused by inconsistent MySQL encoding

Recommend

How to install redis in Docke

1. Search for redis image docker search redis 2. ...

Full analysis of Vue diff algorithm

Table of contents Preface Vue update view patch s...

Example code for configuring monitoring items and aggregated graphics in Zabbix

1. Install Zabbix Agent to monitor the local mach...

Steps to enable MySQL database monitoring binlog

Preface We often need to do something based on so...

How to set the border of a web page table

<br />Previously, we learned how to set cell...

How to get the size of a Linux system directory using the du command

Anyone who has used the Linux system should know ...

A brief discussion on the problem of forgotten mysql password and login error

If you forget your MySQL login password, the solu...

The past two years with user experience

<br />It has been no more than two years sin...

Nginx dynamic and static separation implementation case code analysis

Separation of static and dynamic Dynamic requests...

The pitfall record of the rubber rebound effect of iOS WeChat H5 page

Business requirements One of the projects I have ...

nginx+tomcat example of accessing the project through the domain name

I was curious about how to access the project usi...

Learn SQL query execution order from scratch

The SQL query statement execution order is as fol...

HTML table markup tutorial (48): CSS modified table

<br />Now let's take a look at how to cl...

CSS3 realizes bouncing ball animation

I usually like to visit the special pages or prod...