Re: [CSS21] Background-image: intrinsic ratio of SVG images

2011/11/14 "GĂ©rard Talbot" <www-style@gtalbot.org>:
> If, say, an SVG image has
>
> <svg xmlns="http://www.w3.org/2000/svg">
>  <rect width="100" height="200" fill="green"/>
> </svg>
>
> than such SVG image has a 1 to 2 intrinsic ratio.
>
>
> I am wondering here how a SVG image could have an intrinsic ratio without
> intrinsic dimensions. How would that be possible for a SVG image? This is
> furthermore relevant since section 14.2.1 mentions such possibility (it's
> the paragraph I quoted above).

The viewBox attribute sets the ratio when width/height don't.  So the
following has a 1:2 ratio, but no intrinsic dimensions:

<svg viewBox="0 0 100 200">
 ...
</svg>

This is all explained, in a very difficult-to-understand manner, in
the SVG spec.

~TJ

Received on Monday, 14 November 2011 22:21:47 UTC