/ Published in: HTML
Here leave a script for who want to create of simply form a status bar in html
Aqui dejo un script para quien quiera crear de forma sencilla una barra de progreso en html
Expand |
Embed | Plain Text
<body> <style type="text/css"> .ProgressBar { width: 13em; border: 1px solid black; background: #ffffff; height: 1.35em; display: block; } .ProgressBarText { position: absolute; font-size: 0.75em; width: 17em; text-align: center; font-weight: bold; } .ProgressBarFill { height: 100%; background: #a0c43f; display: block; overflow: visible; } </style> <div class="ProgressBar"> </div> <div class="ProgressBar"> </div> <div class="ProgressBar"> </div> <div class="ProgressBar"> </div>
You need to login to post a comment.
