Is it possible to apply an xml style to more than one element at a time.
basically i want to change the attibutes of the <TABLE> tag and the <TR> tag at the same time as below.
<Style name="Table Style" element="table">
<Attribute name="cellspacing" value="0" />
<Attribute name="cellpadding" value="1" />
<Attribute name="border" value="0" />
<Attribute name="bgcolor" value="#CCCCCC" />
</Style>
<Style name="Table Style 2" element="tr">
<Attribute name="bgcolor" value="#FFFFFF" />
</Style>
the application im using will only allow me to select the <table> tag and im completely stuck. Im new to xml so any help would be appreciated.
basically i want to change the attibutes of the <TABLE> tag and the <TR> tag at the same time as below.
<Style name="Table Style" element="table">
<Attribute name="cellspacing" value="0" />
<Attribute name="cellpadding" value="1" />
<Attribute name="border" value="0" />
<Attribute name="bgcolor" value="#CCCCCC" />
</Style>
<Style name="Table Style 2" element="tr">
<Attribute name="bgcolor" value="#FFFFFF" />
</Style>
the application im using will only allow me to select the <table> tag and im completely stuck. Im new to xml so any help would be appreciated.