I\'m working on a website that has a lot of transparency involved, and I thought I would try to build it entirely in RGBA and then do fallbacks for IE. I need a \"facebox\"
Try this:
#container { width: 700px; margin: 0 auto; background: rgba(255, 255, 255, 0.2); border: 10px solid rgba(255, 255, 255, 0.1); padding: 20px; /* and here is the fix */ -webkit-background-clip: padding-box; -moz-background-clip: padding; background-clip: padding-box; }