Skip to content

Instantly share code, notes, and snippets.

@mozukichi
Last active March 9, 2025 15:43
Show Gist options
  • Save mozukichi/255ba23f68af2eab1400d98dd33105f3 to your computer and use it in GitHub Desktop.
Save mozukichi/255ba23f68af2eab1400d98dd33105f3 to your computer and use it in GitHub Desktop.
CSSによるCanvasスクリーン中央寄せ
body {
background-color: black;
margin: 0;
}
canvas {
background-color: gray;
position: absolute;
left: 50%;
margin-right: -50%;
top: 50%;
transform: translate(-50%, -50%);
}
@media (min-aspect-ratio: 9/16) {
canvas {
height: 100%;
}
}
@media (max-aspect-ratio: 9/16) {
canvas {
width: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment