设置元素整体透明度:

div{
opacity: 0.5;
}

设置背景色透明度

div{
background: rgba(0,0,0,0.5);
}
05-11 17:48