001.html 834 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>教程</title>
  8. </head>
  9. <body>
  10. <style>
  11. .iframe{
  12. width:90vw;
  13. height:100vh;
  14. }
  15. .iframe2{
  16. width:10vw;
  17. height:100vh;
  18. }
  19. .content{
  20. display: flex;
  21. flex-direction:row;
  22. height:100vh;
  23. overflow:hidden;
  24. }
  25. body{
  26. padding: 0px;
  27. margin: 0px;
  28. }
  29. </style>
  30. <div class="content">
  31. <iframe class="iframe" src="100.php" frameborder="0"></iframe>
  32. <iframe class="iframe2" src="002.php" frameborder="0"></iframe>
  33. </div>
  34. </body>
  35. </html>