Transparent iframe ontop of pdf in iframe - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T09:46:53Z http://stackoverflow.com/feeds/question/1027948 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1027948/transparent-iframe-ontop-of-pdf-in-iframe 0 Transparent iframe ontop of pdf in iframe Tim Jarvis 2009-06-22T15:50:35Z 2009-06-22T15:50:35Z <p>I have found the technique of putting iframes on top of an iframes to get round the z-index problem browsers have with iframes.</p> <p>The problem I am facing now is I need the the iframe that overlaps a PDF (loaded into an iframe) to be transparent. Is this possible??</p> <p>The reason I want to do this is so I can have a transparent png over the top of the PDF</p> <p>Below is some code so that you can see my problem - you will see a white square in the top left hand corner of the PDF.</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;style type="text/css"&gt; #contentFrame { height:500px; width:990px; } #overlapFrame { width:100px; height:100px; position:absolute; left:0; top:0; background: transparent; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;iframe src="http://www.education.gov.yk.ca/pdf/pdf-test.pdf" id="contentFrame" frameborder="0"&gt;&lt;/iframe&gt; &lt;iframe id="overlapFrame" frameborder="0" scrolling="no"&gt;&lt;/iframe&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>