Skip to content

Instantly share code, notes, and snippets.

@mitevpi
Created June 10, 2019 21:51
Show Gist options
  • Save mitevpi/cd7f06f157c1b946bbfdf0ff07d09da3 to your computer and use it in GitHub Desktop.
Save mitevpi/cd7f06f157c1b946bbfdf0ff07d09da3 to your computer and use it in GitHub Desktop.
Center Vertically & Horizontally HTML/CSS
canvas {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment