-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_xml.xml
More file actions
37 lines (33 loc) · 918 Bytes
/
css_xml.xml
File metadata and controls
37 lines (33 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8" standalone='no'?>
<?xml-stylesheet type="text/css" href="css_xml.css" ?>
<!--
格式:<?xml 属性列表 ?>
属性列表:
version:版本号,必须的属性
encoding:编码方式。告知解析引擎当前文档使用的字符集,默认值:ISO-8859-1
standalone:是否独立
yes:不依赖其他文件
no:依赖其他文件
-->
<users>
<user id="1">
<name>cpu_code</name>
<age>22</age>
<gender>男</gender>
<br/>
</user>
<user id="2">
<name>cpu</name>
<age>30</age>
<dender>女</dender>
<code>
<!-- CDATA区:在该区域中的数据会被原样展示-->
if(a < b && a > c){
}
<![CDATA[
if(a < b && a > c){
}
]]>
</code>
</user>
</users>