Created
June 24, 2017 06:04
-
-
Save movii/9dac13bc67265b119ef6ed5568c62f03 to your computer and use it in GitHub Desktop.
笔记:前端开发中的「居中」,绝对定位,transform 和 flex 布局:5. CSS 中的 transform 属性
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
.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