0

I am using embed tag to display pdf file on my browser. But it can't display in IE. How to show it in all browsers. Thanks

I using html, angular 4....
my code:
<div class="modal-content" style="overflow: hidden;">
    <embed type="application/pdf" [src]="item.url" frameborder="0"</embed>
</div>

1 Answers1

0

try this:

<embed [src]="item.url" type="application/pdf" width="100%" height="600px" />

you can take a look in this page: https://www.codexworld.com/embed-pdf-document-file-in-html-web-page/

Eagle95
  • 36
  • 7