XML - xml 과 css
xml_css1.xml
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="xml_css1.css"?>
<root>
<item>css연습1</item>
<item1>test</item1>
<item>css연습2</item>
<last>The End~</last>
</root>
xml_css1.css
root {
display: block;
background-color:lightsteelblue
}
item{
border:solid 1px blue;
color:red;
display:block
}
xml과 css를 한 문서에...
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="#myCss"?>
<root>
<style_content id="myCss">
root{}
style_content{
display:none
}
body {
display: block;
background-color:lightsteelblue
}
item{
border:solid 1px blue;
color:red;
display:block
}
</style_content>
<body>
<item>css연습1</item>
<item1>test</item1>
<item>css연습2</item>
<last>The End~</last>
</body>
</root>