We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
justify-content
align-items
<style> .parent { display: flex; justify-content: center; align-items: center; width: 200px; height: 200px; border: 2px solid black; } .child { width: 100px; height: 100px; background: green; } </style> <div class="parent"> <div class="child"></div> </div>
transform
<style> .parent { position: relative; width: 200px; min-height: 200px; border: 2px solid black; } .child { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: green; color: white; } </style> <div class="parent"> <span class="child">行内元素</span> </div>
vertical-align
text-align
<style> .parent { width: 200px; height: 200px; border: 2px solid black; word-spacing: -5px; text-align: center; } .parent::before { content: ""; display: inline-block; height: 100%; width: 0; vertical-align: middle; } .child { display: inline-block; vertical-align: middle; background: green; color: white; } </style> <div class="parent"> <div class="child">你好</div> </div>
line-height
<style> .parent { width: 200px; height: 200px; border: 2px solid black; text-align: center; } .child { background: green; color: white; line-height: 200px; } </style> <div class="parent"> <span class="child">哈哈</span> </div>
<style> .parent { width: 200px; height: 200px; border: 2px solid black; display: table; } .child { display: table-cell; vertical-align: middle; text-align: center; } </style> <div class="parent"> <div class="child">你好</div> </div>
margin
<style> .parent { width: 200px; height: 200px; border: 2px solid black; display: grid; } .child { background: green; color: white; margin: auto; } </style> <div class="parent"> <span class="child">哈哈</span> </div>
1. 块级元素的水平居中 margin: 0 auto 适用于:子元素为定宽的块级元素
<style> .parent { width: 200px; height: 200px; border: 2px solid black; } .child { background: green; color: white; width: 100px; height: 100px; margin: 0 auto; } </style> <div class="parent"> <div class="child"></div> </div>
2. 行内元素的水平居中 text-align: center 适用于:子元素为行内元素
<style> .parent { width: 200px; height: 200px; border: 2px solid black; text-align: center; } .child { background: green; color: white; } </style> <div class="parent"> <span class="child">哈哈</span> </div>
https://css-tricks.com/centering-css-complete-guide/
https://www.zhangxinxu.com/wordpress/2012/04/inline-block-space-remove-%E5%8E%BB%E9%99%A4%E9%97%B4%E8%B7%9D/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
# flexbox +
justify-content
+align-items
# absolute +
transform
# 伪元素 +
vertical-align
+text-align
#
line-height
+text-align
# table +
vertical-align
+text-align
# grid +
margin
# 其他
1. 块级元素的水平居中 margin: 0 auto
适用于:子元素为定宽的块级元素
2. 行内元素的水平居中 text-align: center
适用于:子元素为行内元素
# 参考
https://css-tricks.com/centering-css-complete-guide/
https://www.zhangxinxu.com/wordpress/2012/04/inline-block-space-remove-%E5%8E%BB%E9%99%A4%E9%97%B4%E8%B7%9D/
The text was updated successfully, but these errors were encountered: