我无法在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;
}
答案 0 :(得分:3)
您可以为背景提供偏移以补偿重叠
-fx-background-position: right 10 center;