Skip to content

Instantly share code, notes, and snippets.

@rastyagaev
Last active December 2, 2019 12:01
Show Gist options
  • Save rastyagaev/a609269dc87b8242f0d3dbf06553a1dc to your computer and use it in GitHub Desktop.
Save rastyagaev/a609269dc87b8242f0d3dbf06553a1dc to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Image Rotation Test</title>
<style media="screen">
img {
max-width: 200px;
}
html {
height: 100vh;
}
body {
display: grid;
height: 100vh;
grid-auto-flow: column;
align-items: center;
justify-content: center;
gap: 30px;
}
</style>
</head>
<body>
<img src="./test-1.jpg" />
<img src="./test-2.jpg" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment