gpt4 book ai didi

css - XPath转换为CSS

转载 作者:行者123 更新时间:2023-12-04 12:47:27 29 4
gpt4 key购买 nike

我需要您的帮助,我想将XPath转换为CSS,我有以下代码和以下xpath:
/descendant::p/parent::*/child::p[position()=1] ...选择为(B D F H)

<?xml version="1.0" ?>
<book>
<title>A</title>
<p>B</p>
<p>C</p>
<chapter>
<p>D</p>
<p>E</p>
<section>
<p>F</p>
<section>
<title>G</title>
<p>H</p>
</section>
<p>I</p>
</section>
</chapter>




我如何将其转换为CSS?

最佳答案

我不确定您要查找的内容是什么,但是使用p:first-of-type会选择其父对象中的第一段元素:

p:first-of-type {
background-color: gold;
}


所选元素: B D F HDemo

关于css - XPath转换为CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22027023/

29 4 0
文章推荐: qt - 在 Qt Designer 中分层 UI 元素
文章推荐: visual-studio - Visual Studio 代码段中的 之间有什么区别?