I am having difficulty styling a test page using an external stylesheet. The XML text begins ...
Quote:
quote:<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="Hamlet_4_1_w6_jmf.css" type="text/css"?>
<!--
Modified with the jmfns namespace.
-->
<!DOCTYPE jmfns:Play SYSTEM "Hamlet_4_1_w6_jmf.dtd" [
<!ENTITY KC "KING CLAUDIUS">
<!ENTITY QG "QUEEN GERTRUDE">
<!ENTITY RC "ROSENCRANTZ">
<!ENTITY GS "GUILDENSTERN">
<!ENTITY RC-GS "ROSENCRANTZ and GUILDENSTERN">
]>
<jmfns:Play xmlns:jmfns="IWA0274301.Beginning_XML.jmfns" xmlns:html="http://www.w3.org/1999/xhtml">
|
while the first few lines of the external stylesheet read ...
Quote:
quote:
jmfns\:Play {
margin: auto;
font-family: "Arial", "Helvetica", "Verdana", sans-serif;
color: #000000;
background-color: #98fb98;
border-style:double;
border-width: medium;
width: 440px;
padding: 12px;
}
jmfns\:Title {
display: block;
font-size: 16px;
font-weight: bold;
padding-top: 4px;
padding-bottom: 12px;
text-align: center;
}
|
Note that the colons [':'] in the external stylesheet are escaped per Microsoft.
The page displays as expected using IE, but none of the styling is displayed when using Firefox. Can someone suggest what I'm doing wrong? Thanks.