SVG background text
stackoverflow.com/questions/1191464/is-there-a-way-to-use-use-text-as-the-background-with-css
HTML
<p>I hate SVG!</p>
<p>I hate SVG!</p>
<p>I hate SVG!</p>
<p>I hate SVG!</p>
<p>I hate SVG!</p>
<p>I hate SVG!</p>
<p>I hate SVG!</p>
<p>I hate SVG!</p>
<p>I hate SVG!</p>
<p>I hate SVG!</p>
CSS
body {
background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='50px' width='120px'><text x='0' y='15' fill='red' font-size='20'>I love SVG!</text></svg>");
background-position: center;
background-repeat: no-repeat;
}