gpt4 book ai didi

css - 样式 d3 svg 线与 css

转载 作者:行者123 更新时间:2023-12-02 17:19:03 26 4
gpt4 key购买 nike

我想用 CSS 设置我的 d3 行元素的样式。它似乎适用于其他元素,如“rect”、“path”或“circle”,但对于“line”,我就是无法让它工作......

CSS:

.line {
stroke: #000000;
stroke-width: 0.5;
}

js:

d3.select('.container')
.append("line")
.attr("x1", "0")
.attr("x2", "100")
.attr("y1", "0")
.attr("y2", "100")
//.attr("style", "stroke:#000000;stroke-width:0.5")

如果我删除最后一行中的注释,它会起作用,但我不想使用内联 CSS。

在我看来,如果不使用内联 css 就无法设置特定线条的笔画属性...

我错过了什么吗?

最佳答案

删除点...

line {
stroke: #000000;
stroke-width: 0.5;
}

在 CSS 中,类使用点,如 .my-class 元素前面没有任何内容,例如linediv 和 ID 有 ##my-id

关于css - 样式 d3 svg 线与 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44415845/

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