XSLT StyleSheet XML Tutorial

File: Data.xml



  title 1
  item 1
  item 2
  item 3
  item 4
  item 5
  item 6
  item 7

File: Transform.xslt


  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
  
    
      font-weight: bold; 
    
  
      use-attribute-sets="bold-table">
    8
    8
  
   
    black
    color: white;
  
  
    
      
        <xsl:value-of select="/list/title"/>
      
      
        
      
    
  
  
    


    
      
        
          
            
          
        
      
    
    

Here's the same table with different attribute sets:


    
      
        
          
            
          
        
      
    
  

Output:

   
      
      title 1
   
   
      

title 1


      
         
            item 1
         
         
            item 2
         
         
            item 3
         
         
            item 4
         
         
            item 5
         
         
            item 6
         
         
            item 7
         
      
      

Here's the same table with different attribute sets:


      
         
            item 1
         
         
            item 2
         
         
            item 3
         
         
            item 4
         
         
            item 5
         
         
            item 6
         
         
            item 7