CSS POPUP BACKGROUND TRANSPARENT

http://webix.com/snippet/601a023c

ZONE A : ZONE B , not transparented /… how make it ?

anybody know?

You can try to use the opacity property or something like

background-color: rgba(235, 235, 235, .5);

http://webix.com/snippet/7734d994

its not correct, http://webix.com/snippet/930c981e

i want have transparent background , becouse i want set 2 button in area in my design,

up

Okey, i make next >

remove from webix.css line 1 , background-color:#fff;

and set css;"", in another components.

In CSS, there is no property such as transparancy. But, you can achieve transparancy by inserting a pseudo element with regular opacity the exact size of the element behind it. The CSS3 property for transparent is opacity and it is a part of the W3C CSS3 recommendation.

div
{
opacity: 0.6;
}

The opacity-level describes the transparency-level, it ranges from 0.0 to 1.0. The level 0.0 is completely transparent, 0.5 is 50% see-through and level 1.0 is not transparent. Opacity has a default initial value of 1 (100% opaque).

http://www.corelangs.com/css/box/transparent.html