Currently, I am utilizing the Author Mode within the Oxygen Editor and I am looking to craft a comprehensive CSS that can be applied across multiple XML files. My goal is to be able to select children of a specific element without explicitly naming the child elements; only the parent element would need to be specified. Consider the following example:
<data-collection>
<data key="transfer-period" id ="1"/>
<data key="communication-profile" id="2">
<wanCommunication></wan Communication>
</data>
</data-collection>
In this scenario, I aim to target the wanCommuncation child within the data element without directly specifying the wanCommunication element.
Is there anyone who knows how this can be accomplished in CSS?
Your assistance and expertise are greatly appreciated!