I have the following CSS line:
background: -webkit-gradient(linear, left top, left bottom, from(#243d63), to(#1a2638));
How to make a transparent background, i.e. 0.9 opacity so the user can see what is under the div that has this style? Just for WebKit only care ...
thank
Use rgba
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255,52,21,0.2)), to(#000), color-stop(.6,#000));
rgba is this: rgba(redInDecimal,greenInDecimal,blueInDecimal,alphaFrom0To1);
rgba(redInDecimal,greenInDecimal,blueInDecimal,alphaFrom0To1);
http://jsfiddle.net/PxnXn/1/
Source: https://habr.com/ru/post/1759438/More articles:What do I need to use Markdown in Java Webapp? - javaWordpress - Contact Form 7 Do Not Send To A Specific Address - EmailHibernate annotation issue with JodaTime - javaIs there any way to debug using the visual studio command line? - c ++How to check if current message is first or last in Wordpress - phpWhy is my icon sometimes missing or crossed out? - qtWhat are the pros and cons of sprite versus image sequence? - imagehttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1759441/how-can-i-display-native-accents-to-languages-in-console-in-windows&usg=ALkJrhjL-4bGH__pJ4T4kgIgGNcKZtbyDwМассивные языки, такие как повторное использование кода в Scala - programming-languagesWhat is the easiest way to display a NULL value as an empty string instead of the "null" string in an ExtJS grid? - nullAll Articles