我有以下几行CSS:
background: -webkit-gradient(linear, left top, left bottom, from(#243d63), to(#1a2638));
如何使背景透明,即不透明度为.9,这样用户可以看到具有这种风格的div下的内容?仅仅针对WebKit只关注......
由于
答案 0 :(得分:5)
使用rgba
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,52,21,0.2)), to(#000), color-stop(.6,#000));
rgba语法如下:rgba(redInDecimal,greenInDecimal,blueInDecimal,alphaFrom0To1);