我用这个来选择我要绘制矩形的颜色,并使rgb
工作。
style = "fill:rgb(144,0,0)"
现在如果我尝试hsl
无论我设置哪个值,它都将是黑色的。
style = "hsl(28, 87%, 67%)"
整页代码:
<svg width='200.000' height='200.00' xmlns='http://www.w3.org/2000/svg'>
<rect x='10.000' y='10.000' width='50.00' height='50.00' style='hsl(28, 87%, 67%)' />
<rect x='70.000' y='10.000' width='50.00' height='50.00' style='hsl(28, 87%, 67%)' />
</svg>