Sample FXML with the BorderPanel.alignment "static property":
<BorderPane>
<top>
<Label text="My Label" BorderPanel.alignment="CENTER"/>
</top>
</BorderPane>
The CSS-supported version:
<BorderPane stylesheets="Style.css">
<top>
<Label text="My Label" styleClass="labelClass"/>
</top>
</BorderPane>
Style.css would be:
.labelClass
{
-fx-borderpanel-alignement: center
}