如何将图像居中 div?

How to center images in div?

如何让这些图片居中?这是我的 css 和 html 代码。

我的html代码:

<div id="logos">
  <div id="q">
    <img id="round" src="img/i1.jpg" />
    <img id="round" src="img/i1.jpg" />
    <img id="round" src="img/i1.jpg" />
  </div>
</div>

我的css代码:

#logos {
display: inline-block;
width:100%;
}

#q{
 display: block;

 }
 #round {
 border-radius: 50%;
 display: inline;
 margin: 0 5px;
 width: 150; 
 height: 150; 
 position: cetner;
}

加入#round css:

position: relative;
display: block;
margin: auto;
width: 150px; /*units are needed */
height: 150px; /*units are needed */

在父级上使用 text-align: center...

#q{
    display: block;
    text-align: center;
 }

.round {
    border-radius: 50%;
    display: inline;
    margin: 0 5px;
    width: 150px; 
    height: 150px; 
}
<div id="logos">
    <div id="q">
        <img class="round" src="http://placehold.it/150x150" />
        <img class="round" src="http://placehold.it/150x150" />
        <img class="round" src="http://placehold.it/150x150" />
    </div>
</div>

此外,ID 必须是唯一的。 rounded 应该是 class 而不是 ID。

其次,position: center;在CSS中不存在。

最后,width: 150height: 150 必须有一个度量单位(可能是 px),尽管这不会有任何效果,因为元素是 inline - 也许你是说 inline-block?

代码

<div class="flex-align">
  <img class="round" src="http://placehold.it/150x150" />
  <img class="round" src="http://placehold.it/150x150" />
  <img class="round" src="http://placehold.it/150x150" />
</div>

CSS

.flex-align {
  display: flex;
  align-items: center;
  justify-content: center;
}
#image{
    text-align:center;
}

#image img{
    margin:0 auto;
}

<div class="image">
    <img src="path_to_your_image" alt="">
</div>