怎么才能同时设置背景的渐变色和不透明度
用rgba来添加透明度,例如:
background-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0.2) 100%);
public class test{ public static void main(String[] args){ System.out.println("Test"); } }