I have multiple iframes on my page and I need the first one to scale properly. However, when I try to do this by visiting this link, I encounter a white space or gap between the first and second iframes after scaling. I want to ensure that there is always a 20px space between the first and second iframes, even during scaling.
#slider {
width: 100%;
}
<iframe id="iframe" style="margin-top: 10px;" src="1.html" frameborder="0" width="100%" height="200px">
</iframe>
<iframe id="iframe" style="margin-top: 10px;" src="2.html" frameborder="0" width="100%">
</iframe>
Please assist me with this issue. I am a graphic designer and struggling to fix this problem :(