Skip to content

Instantly share code, notes, and snippets.

@jinhan1414
Created January 30, 2024 06:50
Show Gist options
  • Select an option

  • Save jinhan1414/b34df723120e4b683fc226a7092109b3 to your computer and use it in GitHub Desktop.

Select an option

Save jinhan1414/b34df723120e4b683fc226a7092109b3 to your computer and use it in GitHub Desktop.
空间居中布局
<div class='container'>
<div class='item'></div>
</div>
.item {
background-color: orange;
width: 100px;
height: 50px;
}
.container {
background-color: green;
height: 200px;
display: grid;
align-items: center;
justify-items: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment