How does one make a SVG background that stretches rather than tiles?
css, html, svg
Solution
I think you are asking if you can make the SVG to distort and stretch like a PNG would do. This is unfortunately not impossible unless your SVG codes themselves are set up that way (say if your SVG are generated by illustrator, they simply won't do it).
The only way to do it at the moment is to hand code the SVG. For example, instead of drawing a diagonal line with a set angle you can tell the SVG to connect top left corner to bottom right corner. If you have the SVG, I might be able to tell you how to hand code it. (If your SVG is complicated like Phrogz's tiger, it likely won't be possible...)
Also for most modern browsers, you can simply add `preserveAspectRatio="none"` attribute to the `svg` tag. If you have `.svg` files, you need to open the file with sublime text and add the code to the svg tag (something like `<svg version="1.1"...(hundreds of lines of codes followed)` and you will make it `<svg version="1.1" preserveAspectRatio="none"...(hundreds of lines of codes followed)`.
Problem
I have a SVG background I want to use, and I can't figure out how to make it stretch over the whole page, let alone be a background. Could someone help? (The W3Schools pages, on both SVG nor on backgrounds, gave me nothing). `<object data="background.svg" type="image/svg+xml" width="100%" height="100%">` does not exactly work.