Red Bridge Internet is a San Francisco WordPress Consulting firm specializing in WordPress websites and WordPress Plugin Development. We're the ones you have been searching for.

cross transparent background css

You are browsing the search results for "cross transparent background css"

Cross Browser CSS Background Transparency

Cross Browser CSS Background Transparency

In a nutshell, this is what I used to achieve somewhat cross browser css background transparency: #content { background-color: rgba(255,255,255,0.3); } Then, you’ll of course need to make an exception for stinkin IE: <!–[if IE]> <style type="text/css"> #content { background:transparent; filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#44FFFFFF,endColorstr=#44FFFFFF); zoom: 1; } </style> <![endif]–> In the case above, I’m using Microsoft’s gradient, but [...]