Answers for "show image inside a iframe"

2

how to make the picture in iframe full screen

<iframe src="mypage.html" style="position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index:999999;">
    Your browser doesn't support iframes
</iframe>
Posted by: Guest on May-23-2021
0

iframe on top of image

.outer {
    background-image: url('http://i.stack.imgur.com/6hnLq.png');
    width:420px;
    height:365px;
}
.inner {
    position: relative;
    background-color:;
    left: 67px;
    top: 109px;
    width:277px;
    height:150px;
}
Posted by: Guest on September-11-2020

Browse Popular Code Answers by Language