html
html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!--
https://www.sololearn.com/Discuss/3092794
repositioning-next-progress-bar
-->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div class="skills">
<ul>
<li>
<div class="skill_name">
Skill 1
</div>
<div class="skill_per">80%</div>
<div class="skill_prog">
<span style="width: 80%;"></span>
</div>
</li>
<li>
<div class="skill_name">
Skill 2
</div>
<div class="skill_per">70%</div>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
body
{
}
.subheading {
font-size:20px;
font-weight:bold;
color:2F5A78;
text-transform: uppercase;
padding-left: 16px;
}
.skills ul {
list-style: none;
}
.skill_prog{
width: 60%;
height: 5px;
position: relative;
}
.skill_prog span {
position: absolute;
height: 100%;
background: #2F5A78;
padding-right: 50px;
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run