tamsvg wrote: > > So why can't I write: > > <html xmlns:svg="http://www.w3.org/2000/svg" > xmlns="http://www.w3.org/1999/xhtml"> > <head> > </head> > <body> > <h1>SVG direkt in HTML eingebettet</h1> > <hr> > <svg:svg> > <svg:circle cx="150" cy="150" r="100" style="fill:red"> > </svg:svg> > <hr> > </body> > </html> > > Nothing appears in my browser!
you still have the same errors in your file, that Mark allready corrected. close the circle and hr tags and add a title ! <html xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/1999/xhtml"> <head> <title>test</title> </head> <body> <h1>SVG direkt in HTML eingebettet</h1> <hr> <svg:svg> <svg:circle cx="150" cy="150" r="100" style="fill:red"> </svg:svg> <hr> </body> </html> this works in Opera and MozSVG it does not work in Sidewinder though. to make it work in Sidewinder too, use a viewBox. <svg:svg viewBox="0 0 300 300"/> <!-- your content --> </svg:svg> there is still the problem, that in Sidewinder, the width and height do not seem to default to 100%. cheers Holger ----- 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/

