I'm trying to split the following CSS rule into two lines:
background: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7") 0 0 repeat;
I tried splitting the url base64 string into two sub strings to avoid going over the line length according to the style guide for an open source project called PDF.js.
I tried doing "xxxx" + "xxxx" and that didn't work.
So I was wondering if anyone has tried to do that before or if it is even possible to concat two strings in a css rule?