• Hi Everyone!

    I’m trying to make a background hover-over in CSS.

    The background should change opacity on the hover-over.

    .container{
    background: rgba(255,255,255,1);
    }
    .container:hover {
    background: rgba(255,255,255,0.5);
    }

    This code works fine in Chrome but the hover-over doesnt work in Firefox. Does anyone know what the problem may be?

    I appreciate the help!

The topic ‘Firefox Image Opacity’ is closed to new replies.