A bulleted list created using CSS : list « CSS Style « XML

Home
XML
1.CSS Style
2.SVG
3.XML Schema
4.XQuery
5.XSLT stylesheet
XML » CSS Style » list 
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
1.display as list
2.Setting List Properties
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.