Iframe behind the Image
I want to send the iframe behind the smartphone, the iframe is an image which is mapped, Here's the Code: <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> /* The device with borders */ .smartphone { position: relative; width: 360px; height: 760px; margin: auto; border: 16px black solid; border-top-width: 20px; border-bottom-width: 20px; border-radius: 36px; } /* The screen (or content) of the device */ .smartphone .content{ width: 300px; height: 00px; background: white; } </style> </head> <body> <div class="smartphone"> <div class="content" style="position:absolute; top: -9px; left: -10px;"> <iframe width="380" height="780" frameborder="0" src="Reno/index.html"/> </div> </div> </body> </html>