我無法將類添加到wordpress元素。我想將對象適合:封面元素添加到Wordpress函數,但我正在跑到牆上。將類添加到Wordpress函數
<!-- Row -->
<article class="col-4">
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail('category-thumbnail'); ?></a>
</article>
我試圖通過CSS直接添加對象適合:封面到img,但它沒有影響它。完全困惑,因爲它受到寬度:100%和高度:自動影響。
.col-4 img{
width: 100%;
height: auto;
object-fit: cover;
}
我試着服用寬度,自動關機,只是具有對象的契合:蓋,但它仍然沒有考慮在頁面上的效果。
在此先感謝您的幫助。
請考慮使用背景圖像,而不是對象合蓋。它不支持所有瀏覽器。即使IE11和Edge也不支持它。 http://caniuse.com/#feat=object-fit –