ARGB Hex color not working in css html

前端 未结 3 1750
闹比i
闹比i 2021-01-03 21:28

Why is this ARGB hex not working?


3条回答
  •  甜味超标
    2021-01-03 21:41

    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)).

提交回复
热议问题