简体   繁体   中英

JavaFX TabPane title OverrunStyle

I have a TabPane like below,

在此处输入图像描述

I want the text to be clipped at close button, similar to how browsers display the title like below.

在此处输入图像描述

I have tried css , -fx-text-overrun: clip; in .tab-pane and .tab class but not working as expected.

How can i achieve this?

I am able to achieve the required L&F by setting the Label preferred width.

在此处输入图像描述

.tab-label {
    -fx-pref-width : 150px;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM