使用“中心”将图像水平居中

时间:2018-09-05 02:29:03

标签: html image center

我在将图像水平居中时遇到麻烦。这是我的代码:

<img src="https://dummyimage.com/300x200/000/fff" alt="johnson johnson" style="width:300px; height:225px;" class="center">

我在做什么错?感谢您的宝贵时间。

4 个答案:

答案 0 :(得分:0)

您可以添加

<style>
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
</style>

我只是创建您的班级中心以使其位于图像中心

答案 1 :(得分:0)

您需要将leftright margin应用于auto

  

解决方案:

     

margin:0 auto;

     

display:block

<div style="border:solid 1px red">
<img src="https://dummyimage.com/300x200/000/fff" alt="johnson johnson" style="width:300px; height:225px;margin:0 auto;display:block">
</div>

答案 2 :(得分:0)

如果要进行内嵌样式,可以使用中心标记

<center>
<img src="https://dummyimage.com/300x200/000/fff" alt="johnson johnson" style="width:300px; height:225px;">
<center>

答案 3 :(得分:0)

只需在图片之前添加p标签并为其添加样式。

 <p style="text-align:  center;">
     <img src="https://dummyimage.com/300x200/000/fff" alt="johnson johnson" style="width:300px;height:225px;>
 </p>