Can I apply css when I use CDATA in xml?

Asked 2 years ago, Updated 2 years ago, 43 views

<group class="info_box" style="left:10px; top:275px; width:784; height:150px;">
<caption class="info_text_nomal" style="left:21px; top:-1px; width:733px; height:147px;">
<![CDATA[ 
    * Special Characters + Content
 ]]>
</caption>
</group>

Like the code above, special characters and contents are located in CDATA, but the contents are long, so I want to style the scroll bar. I wonder if there is a way.

css xml

2022-09-20 20:18

1 Answers

/* By the way, 'general' and 'normal' in English */
.info_text_nomal {
    white-space: nowrap;
    overflow-x: scroll;
}


2022-09-20 20:18

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.