Skip to content

Instantly share code, notes, and snippets.

@wader
Created May 4, 2020 16:37
Show Gist options
  • Save wader/24e2df25e9819561ff31ad093dae87bd to your computer and use it in GitHub Desktop.
Save wader/24e2df25e9819561ff31ad093dae87bd to your computer and use it in GitHub Desktop.
html presentation full page svg and images
<html>
<head>
<style>
body {
text-align: center;
}
div {
display: flex;
justify-content: center;
height: 100vh;
}
img[src*=".png"] {
max-height: 100vh;
object-fit: contain;
}
img[src*=".svg"] {
height: 100vh;
width: 100vw;
}
</style>
</head>
<body>
<div><img src="page1.svg" /></div>
<div><img src="page2.png" /></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment