I have a css file that I'm trying to import in SceneBulider . The file contains the following text:
.pagination .pagination-control { visibility: hidden; }
The problem here is that the property visibility is unknown (to quote the warning, Unknown property: "visibility"). Does visibility really doesn't exist, or is it an error from eclipse ( I am using eclipse neon, with SceneBuilder and e(fx)clipse installed). What I am trying to do is hide the pagination labels by using a css file, since I couldn't find another method.
Thank you.
.setStyle("visibility: hidden;");works just fine for me, what are you trying to use it on?