A bulleted list created using CSS
File: Data.xml
<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/css" href="Style.css" ?>
<page>
<list>
<bulletPoint>Item one</bulletPoint>
<bulletPoint>Item two</bulletPoint>
<bulletPoint>Item three</bulletPoint>
<list>
<bulletPoint>Item three point one</bulletPoint>
<bulletPoint>Item three point two</bulletPoint>
</list>
<bulletPoint>Item four</bulletPoint>
</list>
</page>
File: Style.css
page {
display:block;
padding:10px;
color:#000000;
background-color:#FFFFFF;
border-style:solid;
border-width:2px;
border-color:#000000;
}
paragraph {
display:block;
font-family:arial, verdana, sans-serif;
font-size:20px;
padding:20px;
color:#000000;
background-color:#FFFFFF;
}
list {
display:block;
padding-left:20px;
}
bulletPoint {
display:block;
}
bulletPoint:before {
content:"+ ";
}
Related examples in the same category