How to create a transparent or colorless background in css?

What code in css to make the background transparent, or colorless? I'm creating a native ad on Admob and I need the background to be transparent.

Author: ramaral, 2016-09-25

1 answers

I managed to create the transparency I needed, I used the code below in CSS:

body { background-color:rgba(144, 203, 44, 0.4); }

Leaving the alpha with a smaller number it retains the opacity, if left at "0", it becomes fully transparent ! in my case I left with 0.4

 1
Author: Francis Nascimento, 2016-09-25 12:01:09