无法使用Bootstrap居中发布缩略图

时间:2017-04-24 作者:ferdi_

我真的不明白为什么这个缩略图不能在中间?我试过了margin: 0 auto, 正在尝试使用col-md-... 但什么都不管用。

有人能帮忙吗?

非常感谢。

<div id="primary" class="content-area">
    <main id="main" class="site-main container" role="main">
        <div class="row">
            <div class="col-md-6 col-centered">
        <?php the_post_thumbnail(\'thumbnail\'); ?>
    </div>
    </div>
    <div class="row">
        <div class="col-md-10 col-xs-12 col-centered">
    <?php
    while ( have_posts() ) : the_post();

        get_template_part( \'template-parts/content\', get_post_format() );

    endwhile; // End of the loop.
    ?>
</div>

我的CSS

.col-centered {
    float: none;
    margin: 0 auto;
}

img {
  margin: 0 auto;
}

1 个回复
最合适的回答,由SO网友:Alex MacArthur 整理而成

图像可能没有显示:块(默认情况下是内联的),因此使用margin:0 auto不会做任何事情。

尝试将文本对齐:居中添加到。col居中,或将图像标记设置为显示:block(边距:0自动)。

我尽我所能不去看周围的风格。

相关推荐

在带有PHP的子主题中包含style.css

在里面https://codex.wordpress.org/Child_Themes 这是包含样式的最佳实践。css在子主题中,必须将下面的代码放入函数中。php的子主题,但将“父样式”替换为可以在函数中找到的父主题的参数。父主题的php。我在我的主题文件中找不到它,那里也没有多少代码。使用@import包含父主题样式表的方法不适用于我,放入文件的css不会在任何浏览器的站点上显示自己。function my_theme_enqueue_styles() { $parent_s