SVG background text
stackoverflow.com/questions/1191464/is-there-a-way-to-use-use-text-as-the-background-with-css
CSS
body {
background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='20px' width='70px'><text x='0' y='10' background-color='grey' fill='grey' font-size='10'>Some text</text></svg>");
}