๐Ÿ“ฆ microsoft / playwright

๐Ÿ“„ two-frames.html ยท 17 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17<style>
body {
    display: flex;
    flex-direction: column;
    height: 400px;
    margin: 8px;
}

body iframe {
    flex-grow: 1;
    flex-shrink: 1;
    border: 0;
}
</style>
<iframe src='./frame.html' name='uno'></iframe>
<iframe src='./frame.html' name='dos'></iframe>