I have a bit of a strange issue. I have a HTML table (Oracle APEX 5 classic report) using oracle identifiers as headers.
One particular header needs to be displayed as:
----------------------
- One -
- -
- Two -
----------------------
I only have 30 characters to work with (because of the identifier length) so creating two spans and positioning them won't work.
I'm leaning towards the only way being creating an image of my cell and using it as the background-image. However, I have tried the following and it didn't work:
background-image: url('#APP_IMAGES#h.png');
background-repeat: no-repeat;
So, can anyone either help me apply a background image to a table header cell or point me towards another way of doing this?