twitter bootstrap - well background color

css, twitter-bootstrap

Solution

Or you could write it in one line of css as rgba.

.well{
    background: rgba(0, 0, 255, 0.9);
}

Problem

I'm trying to change the background color and opacity of a bootstrap well. I've got the following CSS: ``` .well { opacity: 0.9; /* opacity [0-1] */ -moz-opacity: 0.9; /* opacity [0-1] */ -webkit-opacity: 0.9; /* opacity [0-1] */ background-color: blue; } ``` The opacity is working, but the background-color does not seem to change. Any ideas? Edit fiddle added in case you want a play-a-round

Original source