Bootstrap modal - Add a object tag embedding a PDF

后端 未结 3 493
执念已碎
执念已碎 2020-12-09 13:37

I\'m currently trying to display a bootstrap modal in which I want to include a PDF file with the \"object\" html tag. Problem is that nothing seems to display.

I\'v

3条回答
  •  春和景丽
    2020-12-09 13:53

    I have found that bootstrap include a css property that affect to pdf viewing in a modal window.

    Change this:

    .modal.in .modal-dialog {
      transform: translate(0px, 0px);
    }
    

    to:

    .modal.in .modal-dialog {
      transform: none;
    }
    

    If this property is changed everything works properly.

    You can see in action:

    http://jsfiddle.net/mV6jJ/20/

提交回复
热议问题