tiberticus schrieb: > Hi, > > does someone know if there is a possibility to overlap normal HTML > areas with transparence svg-object. > > ciao > Florian
in IE you can use the wmode property of an <embed>: <embed wmode="transparent" ...> in mozilla/firefox native SVG implementation this is the default behavior. the other option is to directly mix html and svg this works in opera and mozilla, both with native SVG. a mixed namespace document looks like this: <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>cdf test</title> </head> <body> <h1>SVG in HTML</h1> <svg xmlns="http://www.w3.org/2000/svg"> <rect x="0" y="0" widtzh="100" height="100"/> </svg> </body> </html> if you like to do the same with IE have a look at Doug Schepers example: http://schepers.cc/inlinesvg.html all the best 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/

