Skip to content

Instantly share code, notes, and snippets.

@cssoul
Last active December 16, 2015 19:11
Show Gist options
  • Save cssoul/5483564 to your computer and use it in GitHub Desktop.
Save cssoul/5483564 to your computer and use it in GitHub Desktop.
Flexbox实现元素水平、垂直局中
<!--HTML-->
<div class="flex-container">
<div class="flex-item">I'm centered!</div>
</div>
<!--CSS-->
<style>
.flex-container {
display: -webkit-flex;
display: flex;
width: 300px;
height: 300px;
background-color: #999;
}
.flex-item {
width: 100px;
height: 100px;
margin: auto;
background-color: #666;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment