B4J Question CSSutil with line thickness and color

Erel

B4X founder
Staff member
Licensed User
Longtime User
SS-2018-11-06_17.41.51.png


Create a css file named table.css with:
B4X:
.table-cell{
-fx-border-color: green;
-fx-border-width: 2px;
}

Load it with:
B4X:
MainForm.Stylesheets.Add(File.GetUri(File.DirAssets, "table.css"))
 
Upvote 0

Tayfur

Well-Known Member
Licensed User
Longtime User
SS-2018-11-06_17.41.51.png


Create a css file named table.css with:
B4X:
.table-cell{
-fx-border-color: green;
-fx-border-width: 2px;
}

Load it with:
B4X:
MainForm.Stylesheets.Add(File.GetUri(File.DirAssets, "table.css"))

yes; yes...
Thank you for support.
 
Upvote 0
Top