Mega Code Archive

 
Categories / XML / CSS Style
 

Display as list

File: Data.xml <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/css" href="Style.css"?> <recipe source="A">   <dish>A</dish>   <ingredients>     <ingredient>       <quantity>1 cup</quantity>       <component>flour</component>     </ingredient>     <ingredient>       <quantity>4 cups</quantity>        <component>Powder</component>     </ingredient>   </ingredients>     <story>     test   </story> </recipe> File: Style.css recipe {    font-family: "New York", "Times New Roman", serif;     font-size: 12pt  } dish {   display: block;    font-family: Helvetica, Arial, sans-serif;    font-size: 20pt;   font-weight: bold;   text-align: center } ingredient {    display: list-item;     list-style-position: inside  } directions, story {   display: block;    margin-top: 12pt;    margin-left: 4pt }