HTML/CSS Progess Bar shows on browser but doesnt show when trying to print the document

exAns

Im helping a friend create a resume and wanted to incorporate a cool progress bar for the skills portion.

I have created a progress bar and it displays on the browser completely fine; however, when I try to try to save the page as a PDF, the progress bar doesn't show, as in its just shows a white space.

The code I have for the progress bar:

.w3-progress-container{
  width:90%;
  height:1.5em;
  position:relative;
  background-color:#f1f1f1;
  border-radius:7px;
  height:12px;
  margin-top: 5px;
  background-color: #d5d4d4;
}
.w3-progressbar{
  background-color: #0060A6;
  height:100%;
  position:absolute;
  line-height:inherit;
  border-radius:7px;
}

.management{
  width:93%;
}

https://jsfiddle.net/w8kaw4y1/

Any ideas on why its not rendering when I save it as a PDF ?

Thanks!

Sword I

Add following CSS on your style .

@page {
    size: A4;
    margin: 0;
    box-shadow: initial;
    -webkit-print-color-adjust: exact; 
}
@media print {
    html, body {
        width: initial;
        height: initial;
        margin: 0;
        padding: 0;
        overflow: hidden;
        -webkit-print-color-adjust: exact; 
        -webkit-box-shadow: initial;
        box-shadow: initial;
    }
}

Check live : https://jsfiddle.net/w8kaw4y1/4/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Why doesnt anything show up when opening website in browser?

From Dev

How To Show Progress Bar When The Java Applet Load On Web Browser

From Dev

Trying to print data shows Null

From Dev

Is it possible to add a progess bar to GAM model in mgcv?

From Dev

ReactJS Collapsable Element with "Progess/Completion bar"

From Dev

how to make progess widget show with the effect?

From Dev

EditText.setError doesnt show Error text and only shows icon

From Dev

When I am trying to take a contact number from a user and I am print it shows always 0

From Dev

Popup doesnt show when using mysqli

From Dev

Trying to print page shows weird layout

From Dev

CSS Background Image linked right; doesnt show in Browser

From Dev

excel vba to Print a Document opened in IE browser

From Dev

Progess bar in vb.net 2008 while File loading into the grid

From Dev

how to make zurb foundation print as they show in the browser

From Dev

Mysqli print and show in browser from table

From Dev

Strange result when trying to print

From Dev

when trying to use ms-clear on element it doesnt work

From Dev

Show status bar when hide navigation bar

From Dev

Status bar shows on android when keyboard is visible

From Dev

Leaflet browser print plugin doesn't show scale on print

From Java

/oauth/authorization/<service> doesnt work when you click on link in browser but works when you enter it in the browser

From Dev

Parse CorodvaPush Ionic: Android doesnt show notifications when app in background

From Dev

IllegalStateException when trying to show popupWindow

From Dev

Error When trying to show a form

From Dev

Trying to create a print page that only shows 3 divs

From Dev

Trying to create a print page that only shows 3 divs

From Dev

When i am trying to run the xml file, browser show me the message Error loading stylesheet: Failure analysis XSLT stylesheet

From Dev

Hide show button when last item shows

From Dev

Trying to convert object to integer to show as a percentage, but it only shows 0

Related Related

  1. 1

    Why doesnt anything show up when opening website in browser?

  2. 2

    How To Show Progress Bar When The Java Applet Load On Web Browser

  3. 3

    Trying to print data shows Null

  4. 4

    Is it possible to add a progess bar to GAM model in mgcv?

  5. 5

    ReactJS Collapsable Element with "Progess/Completion bar"

  6. 6

    how to make progess widget show with the effect?

  7. 7

    EditText.setError doesnt show Error text and only shows icon

  8. 8

    When I am trying to take a contact number from a user and I am print it shows always 0

  9. 9

    Popup doesnt show when using mysqli

  10. 10

    Trying to print page shows weird layout

  11. 11

    CSS Background Image linked right; doesnt show in Browser

  12. 12

    excel vba to Print a Document opened in IE browser

  13. 13

    Progess bar in vb.net 2008 while File loading into the grid

  14. 14

    how to make zurb foundation print as they show in the browser

  15. 15

    Mysqli print and show in browser from table

  16. 16

    Strange result when trying to print

  17. 17

    when trying to use ms-clear on element it doesnt work

  18. 18

    Show status bar when hide navigation bar

  19. 19

    Status bar shows on android when keyboard is visible

  20. 20

    Leaflet browser print plugin doesn't show scale on print

  21. 21

    /oauth/authorization/<service> doesnt work when you click on link in browser but works when you enter it in the browser

  22. 22

    Parse CorodvaPush Ionic: Android doesnt show notifications when app in background

  23. 23

    IllegalStateException when trying to show popupWindow

  24. 24

    Error When trying to show a form

  25. 25

    Trying to create a print page that only shows 3 divs

  26. 26

    Trying to create a print page that only shows 3 divs

  27. 27

    When i am trying to run the xml file, browser show me the message Error loading stylesheet: Failure analysis XSLT stylesheet

  28. 28

    Hide show button when last item shows

  29. 29

    Trying to convert object to integer to show as a percentage, but it only shows 0

HotTag

Archive