I have something like this:
<div id="attributes1"><span class="heading_fieldset"></div>
<div id="attributes2"><span class="heading_fieldset"></div>
and
#attributes1 .heading_fieldset {
display:inline-block;
width: 30px;
}
#attributes2 .heading_fieldset {
display:inline-block;
width: 30px;
}
how can I group the CSS to be something like (the next CSS is not good...it messes up my page):
#attributes1, #attributes2 .heading_fieldset {
display:inline-block;
width: 30px;
}
Thank you