如何调整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;
}
答案 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)