我真的不明白为什么这个缩略图不能在中间?我试过了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;
}
最合适的回答,由SO网友:Alex MacArthur 整理而成
图像可能没有显示:块(默认情况下是内联的),因此使用margin:0 auto不会做任何事情。
尝试将文本对齐:居中添加到。col居中,或将图像标记设置为显示:block(边距:0自动)。
我尽我所能不去看周围的风格。