Last active
March 9, 2025 15:43
-
-
Save mozukichi/255ba23f68af2eab1400d98dd33105f3 to your computer and use it in GitHub Desktop.
CSSによるCanvasスクリーン中央寄せ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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