Dude, on package foo.bar
I have got a JTextPane
class(MyJTextPane
), and an image back.png
.
Now I would do something in CSS with my Text pane, I like to use the embedded back.png
file as fixed-scroll, both horizontal and vertical center position.
There is no any surprise about the css which would be like this.
body {
background: url('back.png') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
My question, is it possible at all to apply this property for JTextPane
too? if yes, so how would I point out the embedded image resource here?
If no, is there another solution then?
Thanks in advance.