-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: 8
-
Component/s: javafx
This works on HTML
<div style="font-size: 26pt;">
<span>Big </span>
<span>Font</span>
</div>
This does not work on JFX
HBox box = new HBox();
box.setStyle("-fx-font-size: 26px");
box.getChildren().add(new Text("Big "));
box.getChildren().add(new Text("Font"));
<div style="font-size: 26pt;">
<span>Big </span>
<span>Font</span>
</div>
This does not work on JFX
HBox box = new HBox();
box.setStyle("-fx-font-size: 26px");
box.getChildren().add(new Text("Big "));
box.getChildren().add(new Text("Font"));