如何在不使用css调整第一个图像大小的情况下在Wordpress页面上调整第二个图像的大小?

时间:2018-02-28 13:55:10

标签: css wordpress image resize image-resizing

如何调整wordpress页面上的第二个(或第三个或第四个)图像大小而不调整页面上任何其他图像的大小?我尝试过使用p:nth-​​of-type但没有成功。

.content-wrapper.with-featured-image img {
    position: relative;
    width: 600px;
    max-width: 1000px;
    height: 170px;
    max-height: 1000px;
}

.content-wrapper.with-featured-image p:nth-of-type(2) img  {
    position: relative;
    width: 600px;
    max-width: 800px;
    height: 300px;
    max-height: 400px;
}

1 个答案:

答案 0 :(得分:-1)

p:nth-of-type(2) img只会影响第二个<p>元素中的图片。你最好把伪类放在img元素本身上,这样它就会定位content-wrapper元素中的所有图像。

.page-id-1225 .content-wrapper.with-featured-image img:nth-of-type(2)