I think the easiest solution is to use several revolutions.
These three CSS selectors do the trick:
.pagination { -fx-rotate:180; } .pagination .pagination-control { -fx-rotate:180; } .pagination .page { -fx-rotate:180; }
Explanation:
Checking the CSS Pagination link:
- The style class for the entire
Pagination control. - The substructure contains the displayed page with the
page class style. - And page navigation area with
pagination-control class style
- Page - StackPane
- pagination-control - StackPane
- leftArrowButton - button
- ....
So what the CSS selector does is rotate the entire control and then rotate the parts.
Pagination example using these selectors:

source share