In general, it is possible. Testflightapp uses an background-color: rgbaopacity attribute .
So, if you want to set the background color with opacity to your element, use this CSS:
elementname {
background-color: rgba(128, 128, 128, 0.5);
}
If you want to set the opacity of the element as a whole, use:
elementname {
opacity: 0.5;
-moz-opacity: 0.5;
-webkit-opacity: 0.5;
}
This is only supported by browsers that support CSS3.
source
share