Thanks. I assumed that it was something simple. When I got your response, I was just going to write that when I use the following code, it works as I expected. I added fill="none" and stroke="black" to the text element. Now I get two different types of empty rectangles, which is explained by the fill rule that you referred me to.
<?xml version="1.0"?> <!DOCTYPE svg PUBLIC "-//W3C/DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"> <desc>Glyph Test</desc> <defs> <font horiz-adv-x="959"> <font-face font-family="FakeFont" units-per-em="2048"="1835" descent="-597" alphabetic="0"/> <missing-glyph horiz-adv-x="2048" d="M256 V1536H1792V0H256ZM384 128H1664V1408H384V128Z"/> <glyph unicode="A" horiz-adv-x="2048" d="M256 V1536H1792V0H256ZM384 128H1664V1408H384V128Z"/> <glyph unicode="B" horiz-adv-x="2048" d="M256 V1536H1792V0H256Z"/> </font> </defs> <text font-family="FakeFont" stroke="black" fill="none" style="font-size:20" x="100"="100">ABCDE</text> </svg> --------------------------------- Do you Yahoo!? The all-new My Yahoo! � Get yours free! [Non-text portions of this message have been removed] ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

