Can anyone tell me what is the color code for transparency in CSS like white = \"#FFFFFF\"? As I am using following code, to convert the color codes into int:
Co
Simply put:
.democlass { background-color: rgba(246,245,245,0); }
That should give you a transparent background.