Padding and margin : Padding « CSS Style « XML






Padding and margin



File: Data.xml


<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/css" href="Style.css" ?>
<page>
   <pageNumber>1</pageNumber>
   <paragraph>A
      <reference>B</reference>
      <keyword>X</keyword>
   </paragraph>
   <paragraph>C</paragraph>
</page>


File: Style.css

page {
   display:block;
   padding:10px;
   margin:10px;
   border-style:solid; 
   border-width:4px; 
   border-color:#000000;
}

pageNumber {
   display:inline;
   font-style:italic;
   border-style:solid; 
   border-width:4px; 
   border-color:#CCCCCC;
}

paragraph {
   display:block;
   padding:10px;
   border:solid; 
   border-width:4px; 
   border-color:#CCCCCC;
}

reference {
   display:inline;
   font-style:italic;
   color:#CC3333;
   border:solid; 
   border-width:2px; 
   border-color:#CCCCCC;
}

keyword {
   display:inline;
   font-weight:bold;
   color:#990000;
   border:solid; 
   border-width:2px; 
   border-color:#CCCCCC;
}

 








Related examples in the same category

1.padding-top
2.Padding is extra space around the contents of an element but inside the border.