Sometimes it’s nice to see some nice scroll bar effects. Here I share with you how to use CSS to achieve 1. Horizontal progress bar <html> <head> <title>Horizontal progress bar</title> <style type="text/css"> .loadbar { width:200px; height:25px; background-color:#fff; border:1px solid #ccc; } .bar { line-height:25px; height:100%; display:block; font-family:arial; font-size:12px; background-color:#bb9319; color:#fff; } </style> </head> <body> <div class="loadbar"> <strong class="bar" style='width:30%;'>30%</strong> </div> </body> </html> The effect is as follows: 2. Vertical progress bar <html> <head> <title>Vertical Progress Bar</title> <style type="text/css"> .loadbar { width:25px; height:200px; background-color:#fff; border:1px solid #ccc; position:relative; } .bar { width:100%; display:block; font-family:arial; font-size:12px; background-color:#bb9319; color:#fff; position:absolute; bottom:0; } </style> </head> <body> <div class="loadbar"> 30% </div> </body> </html> This is the end of this article about the implementation code of CSS horizontal progress bar and vertical progress bar. For more relevant CSS horizontal progress bar and vertical progress bar content, please search 123WORDPRESS.COM's previous articles or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! |
<<: Introduction to the usage of props in Vue
>>: Implementation of mysql backup strategy (full backup + incremental backup)
As shown below: select a1,a2,a1+a2 a,a1*a2 b,a1*1...
Introduction The Docker community has created man...
React Native can develop iOS and Android native a...
Table of contents 1. Grammar 2. Examples 3. Other...
View the nginx configuration file path Through ng...
Result:Implementation Code html <div class=...
Table of contents General upload component develo...
background Solving browser compatibility issues i...
This article shares the specific code of Vue to r...
I installed MySQL on Windows by unzipping the com...
Implementation ideas: Use text-shadow in CSS to a...
Sometimes you may need to modify or add exposed p...
From the tomcat configuration file, we can see th...
1. Import mysql command The mysql command import ...
This article uses an example to describe the mana...