Pencarian

Minggu, 30 Juni 2024

Membuat Iframe Full Screen

Kode iframe ini benar-benar membuat full screen sesuai tampilan yang ada seperti aslinya.

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Judul iFrame Web</title>
  <style>
    html,
    body {
      height: 100%;
    }
    body {
      margin: 0;
      /* Reset default margin */
    }
    iframe {
      display: block;
      /* iframes are inline by default */
      background: #000;
      border: none;
      /* Reset default border */
      height: 100vh;
      /* Viewport-relative units */
      width: 100vw;
    }
  </style>
</head>
<body>
  <iframe src="https://example.com" height="100%" width="100%"></iframe>
</body>
</html>
© 2015 [BUG] GEDEBUG All Rights Reserved.