将一个div置于div内部的中心

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将一个div置于div内部的中心相关的知识,希望对你有一定的参考价值。

Of course, you don't have to set the width to 50%. Any width less than the containing div will work. The margin: auto is what does the actual centering.
  1. #inner {
  2. width: 50%; /* This is a example number */
  3. margin: auto;
  4. }

以上是关于将一个div置于div内部的中心的主要内容,如果未能解决你的问题,请参考以下文章

CSS 将图像置于div内部,垂直和水平,不知道图像的大小

CSS如何把DIV永远置于页面的底部?

CSS - 中心和圆角的 Img 内部 Div

html如何将一个div置于最上层

CSS如何把DIV永远置于页面的底部

CSS Flexbox - 在两个 div 之间居中一个 div [重复]