I would like to create a Pane with 2 rounded corners top-left and top-right, how can i do this in javafx? I know that u can use \"border-top-left-radius\" in normal css but
.calendar{ -fx-border-radius: 10 10 0 0; -fx-background-radius: 10 10 0 0; /* top-left, top-right, bottom-right, and bottom-left corners, in that order. */ }