Given the following XML
code:
<member name="componentName">
Don't display this text.
<summary>Display this text.</summary>
</member>
How can I use CSS
to show the inner text? I've attempted setting the display
of member
to none
and summary
to block
, as well as setting the font size of member
to zero, but with no success.
Appreciate any help.