Rgba () compatible with IE8 and rgba compatible with ie8
CSS: // General advanced browsers support background: rgba (255,255,255, 0.1); // filter: progid: DXImageTransform in IE8. microsoft. gradient (startColorstr = #19 ffffff, endColorstr = #19 ffffff); the second sentence means execution when the transparency of a row does not work. The meaning of this sentence is originally used for gradient. However, no gradient is required in this area. So both colors are set to the same color. The color "# 19ffffff" is composed of two parts. The first part is 19 after. Is the IEfilter value of rgba transparency 0.1. Each number from 0.1 to 0.9 corresponds to an IEfilter value. Shows the Running Relationship. The second part is the six digits after the 19th digit. This is a hexadecimal color value. The value must be the same as that in the rgb function. For example, the # ffffff; corresponding to rgb (255,255,255) is white.