iframe.html 450 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  5. </head>
  6. <body>
  7. <h2>Monaco Editor in iframe</h2>
  8. <input type="text" style="position: absolute; top: 60px; left: 20px" />
  9. <iframe
  10. src="./iframe-inner.html"
  11. style="
  12. position: absolute;
  13. left: 20px;
  14. top: 100px;
  15. width: calc(100% - 40px);
  16. height: 300px;
  17. border: 1px solid silver;
  18. "
  19. ></iframe>
  20. </body>
  21. </html>