Hello,
I'm using HTML+CSS to create some tables in a org chart. For some items I color the text, for others I change the background. I do those by defining and using classes.
That is, in my <style> setion I declare
.field {
color:purple;
}
.offsite {
background:#ffcc00;
border:1px solid black;
}
and I'll apply those to <tr> elements like so:
<tr class="offsite"> or <tr class="field">
Those work as expected. However, say I want a <tr> to use both classes, that is:
<tr class="field offsite">
I get nothing. This works fine on tools like TrIt Editor, but yED doesn't seem to recognize that I want to use the properties from both classes.
Is this a bug or am I declaring my classes worng here?