I want the following ComboBox:
to look like one of these:
The code for the ComboBox:
// ...
ComboBox<String> comboBox = new ComboBox<>();
comboBox.getItems().addAll("Present", "Sick", "Absent");
root.getChildren().add(comboBox); // previously defined
// ...