Is there a way to optimize the use of base64 data in CSS by defining it once and referencing it in multiple content properties?
div#my_id1 {
content: url(data:image/png;base64,...);
}
div#my_id2 {
content: url(data:image/png;base64,...);
}
Using a class is not an option due to the need for compatibility with a CSS paged media selector:
@page main_content:left {
@top-left {
content: ...
Implementing JavaScript is not possible as the CSS is processed by a CSS paged media processor (Prince XML) rather than a browser.