TextField背景图片

时间:2013-12-14 17:48:50

标签: css javafx-2

我无法在javafx文本字段的边框内放置背景图像。图像显示在右侧边框上。

以下是使用的CSS:

.text-field-calendar {
    -fx-background-insets: 0, 1, 2;
    -fx-background-radius: 3, 2, 2;
    -fx-background-image: url("../../images/pick_calender.png");
    -fx-background-repeat: no-repeat;
    -fx-background-position: right center;
    -fx-padding: 3 15 3 5;
}

1 个答案:

答案 0 :(得分:3)

您可以为背景提供偏移以补偿重叠

-fx-background-position: right 10 center;