seems like a bug in Adobes viewer. btw: I wouldn't use style="..." but either presentation attributes stroke="blue" stroke-width="10" ... or class attributes (real CSS classes).
The first method (presentation attributes) is easier to process and compatible with viewers that don't support CSS, the latter (class attributes) is easier to maintain. The style attribute has neither advantage. It is very unlikely that Adobe will fix this bug, but you can try sending a bug report. Andreas --- In [email protected], "kpalbrecht" <[EMAIL PROTECTED]> wrote: > > In the following file the red and blue lines should be the same width. > In Firefox, they render correctly, but in Adobe's IE viewer, the red > line is thinner than the blue line. Why? > > <?xml version="1.0" encoding="utf-8"?> > <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" > "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> > <svg width="400" height="300" xmlns="http://www.w3.org/2000/svg"> > <g transform="scale(1,0.235)"> > <polyline points="100,0 100,510" style="stroke-width: 10; stroke: > blue" /> > </g> > <g transform=" scale(1,0.01175)"> > <polyline points="300,0 300,10000" style="stroke-width: 10; > stroke: red" /> > </g> > </svg> > > The scaling is obviously different, but the scalings are only > different in the y-axis, not the x-axis. > > Thanks, > Kevin Albrecht > ----- 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/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/svg-developers/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> 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/

