HTML+css to create a simple progress bar

HTML+css to create a simple progress bar

1. HTML code

Copy code
The code is as follows:

Experience points:
<span class="progress-bar"><b style="width:50px;"> </b></span>

2. CSS styles

Copy code
The code is as follows:

.progress-bar, .progress-bar b{background: url("/images/ico.png") no-repeat scroll 0 0; display: block;}
.progress-bar {background-position: 0 0; height: 15px;width: 430px;}
.progress-bar b {background-position: 0 -17px; height: 12px;}

appendix:

<<:  How to use CSS attribute value regular matching selector (tips)

>>:  Example of javascript bubble sort

Recommend

Detailed explanation of JS ES6 variable destructuring assignment

Table of contents 1. What is deconstruction? 2. A...

Raspberry Pi msmtp and mutt installation and configuration tutorial

1. Install mutt sudo apt-get install mutt 2. Inst...

Example code for configuring monitoring items and aggregated graphics in Zabbix

1. Install Zabbix Agent to monitor the local mach...

Detailed explanation of command to view log files in Linux environment

Table of contents Preface 1. cat command: 2. more...

Several reasons for not compressing HTML

The reason is simple: In HTML documents, multiple ...

Solution to the Multiple primary key defined error in MySQL

There are two ways to create a primary key: creat...

How to view available network interfaces in Linux

Preface The most common task after we install a L...

Native js to implement drop-down box selection component

This article example shares the specific code of ...

JavaScript implements a box that follows the mouse movement

This article shares the specific code of JavaScri...

A Brief Analysis of MySQL PHP Syntax

Let's first look at the basic syntax of the c...

Complete steps to reset the root user password in mysql8

Preface Recently, many new colleagues have asked ...

How to find and delete duplicate records in MySQL

Hello everyone, I am Tony, a teacher who only tal...

Very practical Tomcat startup script implementation method

Preface There is a scenario where, for the sake o...