SVG/CSS Background
Test case : works nice on most desktop browser, produces artifact/line border on chrome and firefox for android
by marbx
HTML
<h1>SVG test</h1>
<div class="elementOne">
<div ></div>
<pre>
Lorem ipsum dolor sit amet,
consectetur adipiscing elit,
sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum
.</pre></div>
CSS
.elementOne{
background-image: url("data:image/svg+xml;utf8,%3Csvg%20width%3D%22100%25%22%20height%3D%22100%25%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%20%5C%0A%20%20%20%20%20%20%20%20%3Cdefs%3E%20%5C%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpattern%20id%3D%22smallGrid%22%20width%3D%228%22%20height%3D%228%22%20patternUnits%3D%22userSpaceOnUse%22%3E%20%5C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%208%200%20L%200%200%200%208%22%20fill%3D%22none%22%20stroke%3D%22gray%22%20stroke-width%3D%220.5%22%20%2F%3E%20%5C%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fpattern%3E%20%5C%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cpattern%20id%3D%22grid%22%20width%3D%2280%22%20height%3D%2280%22%20patternUnits%3D%22userSpaceOnUse%22%3E%20%5C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Crect%20width%3D%2280%22%20height%3D%2280%22%20fill%3D%22url(%23smallGrid)%22%20%2F%3E%20%5C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpath%20d%3D%22M%2080%200%20L%200%200%200%2080%22%20fill%3D%22none%22%20stroke%3D%22gray%22%20stroke-width%3D%221%22%20%2F%3E%20%5C%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fpattern%3E%20%5C%0A%20%20%20%20%20%20%20%20%3C%2Fdefs%3E%20%5C%0A%20%20%20%20%20%20%20%20%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20fill%3D%22url(%23smallGrid)%22%20%2F%3E%20%5C%0A%20%20%20%20%3C%2Fsvg%3E");
;
}
JavaScript
/* the svg source :
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px" y="0px"
width="100px" height="100px"
viewBox="0 0 100 100"
enable-background="new 0 0 100 100"
xml:space="preserve">
<polygon fill="#7AC943" points="100,100 100,0 0,100 "/>
</svg>
*/