Hi all!
When using style definitions
Code:
.element {
width: 45%;
}
.element.full {
width: 100%;
}
in div element as following
Code:
<div class="element full" style="border: 1px solid black;">
causes the div to gain width of 45% instead of 100%. If width attribute is removed from .element or .element.full is renamed to .full then div gains 100% width. Is this kind style inheritance unsupported in pd4ml?
Thanks in advance,
Kalle