使用 CSS 实现整体居中:设置 align-items: center 进行垂直居中。设置 justify-content: center 进行水平居中。同时设置 align-items 和 justify-content 属性可将整体居中。
如何使用 CSS 设置整体居中
在网页设计中,有时需要将所有内容居中对齐,这可以通过使用 CSS 的 align-items 和 justify-content 属性来实现。
align-items 属性
align-items 属性用于设置容器中项目(flex item)的垂直对齐方式。如果将 align-items 设置为 center,则项目将垂直居中:
<code class="css">.container { display: flex; align-items: center; }</code>
justify-content 属性
justify-content 属性用于设置容器中项目(flex item)的水平对齐方式。如果将 justify-content 设置为 center,则项目将水平居中:
<code class="css">.container { display: flex; justify-content: center; }</code>
将整体居中
要将整体居中,需要同时设置 align-items 和 justify-content 属性:
<code class="css">.container { display: flex; align-items: center; justify-content: center; }</code>
示例
以下示例演示了如何使用 CSS 将网页中的所有内容居中:
<code class="html"><!DOCTYPE html> <html> <head> <style> body { display: flex; align-items: center; justify-content: center; height: 100vh; } </style> </head> <body> <h1>Hello, world!</h1> </body> </html></code>
以上是css怎么设置整体居中的详细内容。更多信息请关注PHP中文网其他相关文章!