This question is best illustrated by the screenshot:
http://i42.tinypic.com/2ccvx91.jpg
The wrapper div has a background image of the city.
#wrapper {
background:url('city.jpg');
}
Inside this div there are a bunch of other 'square' class divs:
.square {
width:40px;
height:40px;
background-color:#27272f;
opacity:.8;
margin:2px;
}
You can see through the squares of the city due to opacity. But you can also see through the spaces between the squares, which I do not want to do. I want to see only through divs to the element behind it, and the gaps between them are solid black. How can i do this?
Thank.
source
share