4

我有一个AnchorPane,我想通过给它一个我在另一个包中的 BackgroundImage 来设置它的样式: 文件结构截图

这是我尝试过的 CSS:

#body 
{
    -fx-background-image:url("/Images/FlowersPattern_beige_background.jpg");   
}

使用 javascript 我将 AnchorPane 的 CSS id 设置为body; 那没有用。我试图检查已经提出的其他问题,但它们没有帮助。请你能澄清一下,究竟应该怎么做?

4

1 回答 1

7

If your css file is loaded normally, Replacing:

"/Images/FlowersPattern_beige_background.jpg"

with

"../Images/FlowersPattern_beige_background.jpg"

should work.

The path is relative to the css file's directory, the .. accesses the parent directory (src); /Images refers to the Images directory; finally /FlowersPattern_beige_background.jpg accesses your image.

于 2013-05-19T01:49:35.560 回答