图像未定位到中心

Image is not positioned to center

我想在单元格中心的 table 中显示图像,但这是我得到的。我的图像覆盖了整个单元格,而不是放在单元格的中心。我在 bootstrap 文件中对图像使用 img-responsive class,对 table 使用 table-responsive。 此外,每当我加载页面时,我都会随机获得以下输出之一,而代码绝对没有变化。 为什么会这样?? 在这两种情况下,图像似乎都位于列的左侧,我该如何更正它以使图像位于中心。 以下是代码

<div class="table-responsive inside_content ps-container" style="margin-bottom: 50px">
<style>
    th,td{
        text-align: center;
    }
</style>
<table id="event" class="table table-striped table-responsive">
    <thead>
        <tr>
          <th>Serial No.</th>
          <th>Section</th>
          <th>TimeStamp</th>
          <th>Archive_Status</th>
          <th>Event Picture</th>
          <th>Actions</th>
        </tr>
    </thead>
    <tbody>
                    <tr>
            <td>
                test1                </td>
            <td>
                Event3                </td>
            <td>
                2015-01-08 19:41:45                </td>
            <td>
                0                </td>
            <td>
                <a class="event_group1" href="http://localhost/IOCLALL/IOCLbackend/../IOCLfrontend/images/events/WWW.YTS_.RE_.jpg">
                    <img alt="No Image" class="img-responsive" style="max-width:145;max-height: 208px" src="http://localhost/IOCLALL/IOCLbackend/../IOCLfrontend/images/events/WWW.YTS_.RE_.jpg" />
                </a>
            </td>
            <td>
                <a href="http://localhost/IOCLALL/IOCLbackend/index.php/start/deleteevent?id=2" onclick="return del();"><span class="fa fa-fw fa-trash" ></span></a>&nbsp;&nbsp;
                <a href="http://localhost/IOCLALL/IOCLbackend/index.php/start/editevent?id=2" onclick=""><span class="fa fa-fw fa-edit" ></span></a>
            </td>
        </tr>



    </tbody>
</table>

</div>
<td style="text-align: center;">

向那个 td 添加 css 以在中心对齐文本,它也应该适用于图像

将 align="center" 添加到单元格 .

例如

<td align="center"> <img src="...

如何添加 display:inline / 内联块; margin:0px自动;

我希望它能回答你的问题

您必须像对待 P 一样对待 TD, 添加一个 text-align:centerTD 和一个 display:inline-block 到图像

<td style="text-align: center;">
    <img style="display: inline-block;" />
</td>