0


flex布局居中

要在 flex 布局中居中元素,可以使用

  1. justify-content: center

  1. align-items: center

  1. .container {
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. }

这会使元素在容器中水平居中和垂直居中。

如果你只想要垂直居中,可以只使用

  1. align-items: center

如果你只想要水平居中,可以只使用

  1. justify-content: center

注意,这些样式只在父元素是 flex 布局时才有效。

标签: css css3 html

本文转载自: https://blog.csdn.net/weixin_35753291/article/details/128867348
版权归原作者 笨爪 所有, 如有侵权,请联系我们删除。

“flex布局居中”的评论:

还没有评论