Skip to content

Instantly share code, notes, and snippets.

@RoyCurtis
Last active July 27, 2023 22:18
Show Gist options
  • Save RoyCurtis/31ea55fd3ef8d4bfa8dd6fbfbb5c6252 to your computer and use it in GitHub Desktop.
Save RoyCurtis/31ea55fd3ef8d4bfa8dd6fbfbb5c6252 to your computer and use it in GitHub Desktop.
Full-screen dynmap iframe
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Dynmap!</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html, iframe {
width: 100%;
height: 100%;
}
iframe {
border: none;
}
body {
display: flex;
}
</style>
</head>
<body>
<iframe width="100%" height="100%" src="http://mc.freebuilders.org:8123/">
</iframe>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment