1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>教程</title>
- </head>
- <body>
- <style>
- .iframe{
- width:90vw;
- height:100vh;
- }
- .iframe2{
- width:10vw;
- height:100vh;
- }
- .content{
- display: flex;
- flex-direction:row;
- height:100vh;
- overflow:hidden;
- }
- body{
- padding: 0px;
- margin: 0px;
- }
- </style>
- <div class="content">
- <iframe class="iframe" src="100.php" frameborder="0"></iframe>
- <iframe class="iframe2" src="002.php" frameborder="0"></iframe>
- </div>
- </body>
- </html>
|