公告
财富商城
积分规则
提问
发文
2019-02-11 15:03发布
淡お忘
Why is this ARGB hex not working?
<td style="background-color: #FFFF9980">
Use rgba(255,153,128,1.0) instead of your hex value (though if that really is ARGB it's the same as #ff9980 in RGB - if you meant RGBA then you'll need rgba(255,255,153,0.5)).
rgba(255,153,128,1.0)
#ff9980
RGB
rgba(255,255,153,0.5)
the CSS3 spec says:
Unlike RGB values, there is no hexadecimal notation for an RGBA value.
so you will have to use the rgba(255,153,128,1.0) mentioned above.
最多设置5个标签!
Use
rgba(255,153,128,1.0)
instead of your hex value (though if that really is ARGB it's the same as#ff9980
inRGB
- if you meant RGBA then you'll needrgba(255,255,153,0.5)
).the CSS3 spec says:
so you will have to use the
rgba(255,153,128,1.0)
mentioned above.