svg filter effects applied to svg graphics in xhtml

Is it possible to
1. create an svg style with svg filter effects (like bevel) one time in an
xhtml document
2. apply it to different svg graphic or text in the body of the xhtml?

example:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
<html>
    <head>
    <!-- svg style name="bevel" -->
    </head>

    <body>
        <p>...</p>
        <svg><!-- rectangle with bevel style applied --></svg>
        <p>...</p>
        <svg><!-- circle with bevel style applied --></svg>
        <p>...</p>
        <svg><!-- text with bevel style applied --></svg>
    </body>
</html>
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Thank you very much :)

Received on Monday, 24 March 2003 17:28:51 UTC