What is the color code for transparency in CSS?DWQA Questions › Category: Web Design HTML › What is the color code for transparency in CSS? 0 Vote Up Vote Down Editor Staff asked 2 months ago What is the color code for transparency in CSS?Related 1 Answers 0 Vote Up Vote Down Editor Staff answered 2 months ago how to make transparent elements with css: CSS for IE:filter: alpha(opacity = 52); CSS for other browsers:opacity:0.52;OR background-color: rgba(0,0,0,0.0); Related