| Example 11 << >> | book |
| XUL | HOME |
| Notice the closing tag in <hr/> |
|
<?xml-stylesheet href="css1.css" type="text/css" title="css1"?> <window align="vertical" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/TR/REC-html40"> <html:h2>Formulas</html:h2> <html:hr/> <html:ul> <html:li>H<html:sub>2</html:sub>O</html:li> <html:li>Na<html:sup>+</html:sup></html:li> </html:ul> </window> |
| Notice the closing tag in <hr/> |
|
<?xml-stylesheet href="css1.css" type="text/css" title="css1"?> <window align="vertical" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" xmlns:html="http://www.w3.org/TR/REC-html40"> <html:h2>Formulas</html:h2> <html:hr/> <html:ul> <html:li>H<html:sub>2</html:sub>O</html:li> <html:li>Na<html:sup>+</html:sup></html:li> </html:ul> </window> |
| CSS | HOME |
| CSS |
|
window {background-color: #EEFFEE} hr {background-color:black} |