我必须使用 RGB 值设置 div 的 backgroundColor 。我能够做到这一点。
<div style="width: 100px; height: 100px; background-color: rgb(255,0,0)">
</div>
现在,由于我也有 CMYK (0,1,0.5,0) 值,所以你能帮我如何实现这些值。
我这样做了,但没有收获。
<div style="width: 100px; height: 100px; background-color: device-cmyk(0, 1, 0.5, 0)">
</div>
谢谢