gpt4 book ai didi

css - 如何在javafx中设置边框间距

转载 作者:行者123 更新时间:2023-11-28 16:48:15 25 4
gpt4 key购买 nike

如何在 javafx 中使用边框间距属性

就像在 html 的 css 中一样

table.ex1 {
border-collapse: separate;
border-spacing: 10px 50px;
}

我如何在 javafx 中使用边框间距?

在 TabPane 中,我想在每个选项卡下放置一个底部边框,我的 CSS 是

.tab-pane:focused > .tab-header-area > .headers-region > .tab:selected .focus-indicator {
-fx-border-width: 4px;
-fx-border-color: transparent transparent white transparent;


}

它工作正常,我有漂亮的底部边框,但我需要更多的边框间距,所以有人请告诉我该怎么做吗?

提前致谢。

最佳答案

.tab:top{
-fx-background-color: transparent;
-fx-border-insets: 0 0 0 0;
-fx-border-color: white white white white ;
-fx-padding: 15px;
}

我认为 javafx css 中没有 border-spacing 类型属性,但无论如何你可以在 TabPane 中通过选项卡的 -fx-padding 属性来实现。

关于css - 如何在javafx中设置边框间距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32908234/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com