How can I make the alignment of the progress bars equal? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How can I make the alignment of the progress bars equal?

https://code.sololearn.com/WlkuZ2Fi3qm3/?ref=app

5th Nov 2017, 2:26 PM
B.D
B.D - avatar
3 Answers
+ 1
Try this <span class="title">WEB</span><progress min="0" max="100" value="100"></progress><br> <span class="title">C++</span><progress min="0" max="70" value="100"></progress><br> <span class="title">JAVA</span><progress min="0" max="100" value="10"></progress><br> <span class="title">PYTHON</span><progress min="0" max="100" value="100"></progress><br> <span class="title">RUBY</span><progress min="0" max="100" value="90"></progress><br> <span class="title">SWIFT</span><progress min="0" max="100" value="100"></progress><br> in CSS: .title { display: inline-block; min-width: 80px; } https://code.sololearn.com/W5EgI4qSrNf6/?ref=app
5th Nov 2017, 3:27 PM
Calviղ
Calviղ - avatar
+ 2
Thanks
5th Nov 2017, 3:48 PM
B.D
B.D - avatar
+ 1
With a table for example
5th Nov 2017, 2:30 PM
Daniel
Daniel - avatar