gpt4 book ai didi

css - 使用 XPATH 和 CSS 对特定元素进行样式化

转载 作者:太空宇宙 更新时间:2023-11-03 21:59:29 24 4
gpt4 key购买 nike

我想定位以下元素:

/html/body/div[2]/div/div[5]/div/table/tbody/tr[2]/td[2]/img

我怎样才能准确地设置它的样式?

目前我有这个 css,它似乎将样式应用于 div 内的所有 img

div.PageHeaderDescription img {
border-radius: 7px 7px 7px 7px;
bottom: 10px;
float: none;
height: auto;
margin-right: 10px;
position: relative;
right: -230px;
width: 614px;
}

最佳答案

你可以使用

div.PageHeaderDescription img:first-child {
border-radius: 7px 7px 7px 7px;
bottom: 10px;
float: none;
height: auto;
margin-right: 10px;
position: relative;
right: -230px;
width: 614px;

}只访问第一张图片或

    div.PageHeaderDescription > img {
border-radius: 7px 7px 7px 7px;
bottom: 10px;
float: none;
height: auto;
margin-right: 10px;
position: relative;
right: -230px;
width: 614px;

}仅访问 PageHeaderDescription div 中的图像。

关于css - 使用 XPATH 和 CSS 对特定元素进行样式化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11506309/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com