作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 CSS 开发 JavaFx 应用程序。我希望盒子的线条填满所有空间。
我有以下 CSS。
.box
{
-fx-border-color:#000 #ff0000 #00ff00 #0000ff;
-fx-border-width:5px;
}
结果如下:
我想让黑线覆盖顶部的所有部分。谢谢。
最佳答案
您可以为边框使用“嵌套背景”技术:
.box {
-fx-background-color: #000, #f00, #00f, #0f0, -fx-background ;
-fx-background-insets: 0, 5 0 0 0, 5 5 0 0, 5 5 0 5, 5 ;
}
它的工作方式是绘制五个背景,一个在另一个之上,每个背景都有不同的插图。所以首先它绘制了一个黑色背景来填充整个 Pane ;然后它绘制一个红色背景填充整个 Pane ,除了顶部的 5 个像素;然后蓝色背景填充除顶部和右侧五个像素以外的所有内容,等等。
稍加思考,您就可以很好地控制它。比如改成
.box {
-fx-background-color: #000, #0f0, #f00, #00f, -fx-background ;
-fx-background-insets: 0, 5 0 0 0, 5 0 5 0, 5 0 5 5, 5 ;
}
将使绿色边框沿底部横跨整个宽度,而不是让蓝色和红色边框一直延伸到 Pane 底部。
这是一个快速测试,上面的代码位于名为 box-style.css
的文件中:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;
public class BorderTest extends Application {
@Override
public void start(Stage primaryStage) {
// just create a control so the default stylesheet is loaded:
new Label();
Pane root = new Pane();
root.getStyleClass().add("box");
Scene scene = new Scene(root, 400, 400);
scene.getStylesheets().add("box-style.css");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
对于第一个版本的 CSS,这看起来像
关于java - 如何在javafx中完成边框长度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49763445/
我是一名优秀的程序员,十分优秀!