import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.ProgressBar; import javafx.scene.layout.VBox; import javafx.stage.Stage; public class progress extends Application { public static void main(String[] args) { launch(args); } public void start(Stage stage) { VBox box = new VBox(); ProgressBar bar = new ProgressBar(0.5); bar.setId("progress-bar-1"); box.getChildren().add(bar); ProgressBar bar2 = new ProgressBar(0.7); bar2.setId("progress-bar-2"); box.getChildren().add(bar2); ProgressBar bar3 = new ProgressBar(0.9); bar3.setId("progress-bar-3"); box.getChildren().add(bar3); Scene scene = new Scene(box); scene.getStylesheets().add(progress.class.getResource("test.css").toExternalForm()); stage.setScene(scene); stage.setTitle("Test without WebView"); stage.show(); } }