CB 0 Opacity with CSS ClintC Bublitz posted 2015-07-10 16:14:12 How do I deal with all email clients with using a percentage of a color?
.thing { background-color: #dca900; background-color: rgba(220, 169, 0, .5); } By using this CSS order, you set a HEX color for all then progressively enhance to RGBa with a decimal alpha channel value. Webkit clients support this. Reply to Charles Hall
By using this CSS order, you set a HEX color for all then progressively enhance to RGBa with a decimal alpha channel value. Webkit clients support this.