On Thu, 27 Sep 2007 02:39:49 +0200, shydisturbedboy <[EMAIL PROTECTED]> wrote:
> if i set the "display" to "none", will it affect the performance? If you hide something that is costly to render then yes. > will it be faster for the svg file to 'react'? why is this? By using display="none" you're telling the user agent that this particular subtree doesn't need to be considered for e.g mouse events, and that the user agent can skip the subtree when rendering. If using visibility="hidden" the user agent still needs to process the subtree because any child element can override visibility, and this is not the case with display. Cheers /Erik -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/ ----- 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/

