I am using the Author Mode in Oxygen Editor and I want to create a general CSS for many XML files. I want to be able to select child of a given element, without having to have previously specified the name of the child (only of the parent element), for example:
<data-collection>
<data key="transfer-period" id ="1"/>
<data key="communication-profile" id="2">
<wanCommunication></wanCommunication>
</data>
</data-collection>
Here I would like to select the wanCommuncation child of the data element, without specifying the wanCommunication element.
Does somebody know how this is achieved in CSS?
Many thanks in advance!