有沒有辦法在標籤之間添加間距? 這裏是一個圖像: 標籤之間的間距
我想添加「演示文稿」選項卡和「測試遊戲」之間的任何幫助? 下面是我使用的CSS:
* {
-fx-focus-color: transparent;
-fx-faint-focus-color: transparent;
-fx-background-radius: 0;
-fx-background-insets: 0;
-fx-border-radius: 0;
-fx-border-insets: 0;
}
/* tabs */
.tab {
-fx-background-color: linear-gradient(#9b2626, #721b1b);
-fx-border-color: #721b1b;
}
.tab-label {
-fx-text-fill: white;
}
.tab:hover {
-fx-background-color: #9b2626;
}
.tab:pressed {
-fx-background-color: #721b1b;
}
使用一種無形的邊界可能?我不知道默認方法。 – Jonah
問題是我已經使用邊界... – loryruta
'margin'也許有幫助,對此不太確定。 –