ARGB Hex color not working in css html

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

Why is this ARGB hex not working?


3条回答
  •  萌比男神i
    2021-01-03 21:57

    ARGB Hex color

    RGBA color values are an extension of RGB color values with an alpha channel - which specifies the opacity for a color.

    An RGBA color value is specified with: rgba(red, green, blue, alpha). The alpha parameter is a number between 0.0 (fully transparent) and 1.0 (fully opaque).

    
    

    #p1 {background-color:rgba(255,0,0,0.3);}
    #p2 {background-color:rgba(0,255,0,0.3);}
    #p3 {background-color:rgba(0,0,255,0.3);}
    #p4 {background-color:rgba(192,192,192,0.3);}
    #p5 {background-color:rgba(255,255,0,0.3);}
    #p6 {background-color:rgba(255,0,255,0.3);}

    Define Colors With RGBA Values

    Red

    Green

    Blue

    Grey

    Yellow

    Cerise

提交回复
热议问题