Setting List Properties : list « CSS Style « XML

Home
XML
1.CSS Style
2.SVG
3.XML Schema
4.XQuery
5.XSLT stylesheet
XML » CSS Style » list 
Setting List Properties


File: Data.xml 
<?xml version="1.0" ?>
<?xml-stylesheet type="text/css" href="Style.css" ?>
<lists>
  <employees>
    <name>name 1</name>
    <projects>
      <project>
        project 1
      </project>
      <project>project 2</project>
    </projects>
  </employees>
</lists>

File: Style.css
 
lists {
   display:block
}

name {
   color:red
}

projects {
   display:block
}

project {
   display:list-item;
   list-style:url(mini.jpginside
}

 
Related examples in the same category
1.A bulleted list created using CSS
2.display as list
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.