Forum How do I...?

How to position SVG on a page

JohnClarke
What is the best way to position a given SVG block on a page? For instance, I'd need one on the bottom-left corner, regardless of the flow of text. I assume with some sort of FLOAT property. -John

John Clarke
Cornerstone Systems Northwest Inc.

mikeday
Page floats might be what you are looking for, eg. "float: bottom".

Alternatively, you might like to try fixed or absolute positioning, which uses the position property with a value of "absolute" or "fixed" combined with the left/top/bottom/right properties, which take a length and specify the offset of the corresponding side from the containing block.