1
I’m having trouble configuring the appearance of a Progress bar with css and html
I’m a beginner, I’m doing my site now and I came across the following problem: I can’t get my bar to appear right on Chrome and firefox. In Microsoft Edge it appears the way I wanted to configure it, but when accessing my index.html in Chrome and firefox the Progress bar looks different. Can someone help me?
HTML:
<div class="section" align="center">
<h2><i>Minhas habilidades</i></h2>
<hr width="200px">
<h6>Ao clicar, você será direciado ao Wikipedia, onde fala mais sobre cada uma das minhas habilidades</h6>
</div>
<ul class="abilities">
<!--consegui corrigir com o margin-left-->
<li>HTML:<br> <progress min= "0" max="100" value="100"></progress></li>
<li>CSS:<br> <progress min= "0" max="100" value="10"></progress></li>
<li>JavaScript:<br> <progress min= "0" max="100" value="60"></progress></li>
</ul>`
CSS:
.abilities{
max-width: 100%;
font-style: italic;
margin-left: 35%;
}
.abilities progress {
border-radius: 10px;
padding: 2px;
color: rgb(247, 111, 111);
background-color: white;
}
Some prints of the problem:
First image: Microsoft Edge, how I wanted it to be displayed Second image: Chrome Third image: Firefox