CSS to change the size of a TextField in javafx -


i know can

textfield tempfield = new textfield();     tempfield.setminsize(500,500); 

within javafx have 45 text fields change i'd change them @ once setting css on scene. can me out?

figured out

.text-field{     -fx-min-width: 50;     -fx-min-height: 50; } 

Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -