-1

我目前有一个 Wordpress 博客,它显示来自我添加到帖子中的自定义字段的图像。我正在寻找图像的角落。当我添加一个 div 时,我无法使用圆角的 css。我将如何对图像进行四舍五入?

    foreach (get_posts('cat='.$category->term_id) as $post) {
        echo '<li class="item">';

        setup_postdata( $post );
        $custom = get_field('face');
echo wp_get_attachment_image($custom);

echo '</li>';
4

1 回答 1

0

好吧,您应该为此使用 CSS,例如:

.item img{
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}

只需50%指定半径量。您可以使用px以及%. 将其设置为 50% 将为您提供圆形图像。

于 2013-07-28T20:33:29.593 回答