CSS 参考手册
CSS3 opacity 属性
设置一个div元素的透明度级别
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> div { background-color: red; opacity: 0.5; filter: Alpha(opacity=50); /* IE8 and earlier */ } </style> </head> <body> <div>This element's opacity is 0.5! Note that both the text and the background-color are affected by the opacity level!</div> </body> </html>
运行结果:
点击运行 »