--- In svg-developers@yahoogroups.com, "xyz1332003" <richard_grimes@...> wrote:
>
> I am trying to figure out the best way to position svg images on an html page.
>
> Is it possible to position them using an external css page?
> If not, are there other options?
>
> Thanks.
>
You can position <svg> elements just like you can position any other elements in
HTML using CSS. For instance:
/* all svg elements with class="inline" */
svg.inline {
display:inline
}
/* the svg element with id="topright" */
svg#topright {
position: absolute;
right: 0px;
top: 0px;
}