Franck Dettfurth: iframe-Anordnung

Beitrag lesen

Kann mir jemand helfen? Warum werden die beiden rechten iframes nicht bis zum rechten Fensterrand angezeigt? Danke!

<!DOCTYPE html>
<html>
<head>
    <title>Iframe-Seite</title>
    <style>
        iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        #container {
            display: flex;
            height: 100vh;
            width: 100vw;
        }

        #iframe1 {
            width: 50%;
        }

        #iframe2, #iframe3 {
            width: 100%;
            height: 50%;
        }
    </style>
</head>
<body>
    <div id="container">
        <iframe id="iframe1" src="testdok1.html"></iframe>
        <div>
            <iframe id="iframe2" src="testdok2.html"></iframe>
            <iframe id="iframe3" src="testdok3.html"></iframe>
        </div>
    </div>
</body>
</html>