Skip to content

Instantly share code, notes, and snippets.

@movii
Created June 24, 2017 06:04
Show Gist options
  • Save movii/9dac13bc67265b119ef6ed5568c62f03 to your computer and use it in GitHub Desktop.
Save movii/9dac13bc67265b119ef6ed5568c62f03 to your computer and use it in GitHub Desktop.
笔记:前端开发中的「居中」,绝对定位,transform 和 flex 布局:5. CSS 中的 transform 属性
.box.box_centerByFlex {
display: flex;
justify-content: center;
align-items: center;
}
.box.box_centerByFlex .content {
align-self: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment