Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Opacity problem in IE

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #166321
    rpundlik
    Participant

    Hello All,

    I have implemented JQuery modal dialog in application. Also, i have set opacity through CSS class..

    That works fine in chrome and firefox.. But in IE8 whenever modal dialog is shown,

    the background is shown at bottom of the page and not over content of the page..

    Why this is so ? Do i need to apply specific attribute for IE.

    .ui-widget-overlay {
    background: fixed #000;
    opacity: .7;
    -moz-opacity: 0.7;
    filter: Alpha(Opacity=70) !important; 
    

    }

    #166325
    Paulie_D
    Member

    Could you make a Codepen because it’s not clear what you are trying to do?

    #166468
    yoyo
    Participant

    for IE8 opacity, try this

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=70)"; 
    
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.