Add this to your bar
border: none;
Your have not specified what to do with the border, so html will set the default border.
also I would prefer making a progress bar like this
.bar {
width: 250px;
height: 20px;
background: #f1f1f1;
}
.percent {
height: 100%;
width: 25%;
background: #4c4c4c;
display: block;
transition-duration: 300ms;
}
.percent:hover {
width: 50%;
}
<div class="bar">
<span class="percent"></span>
</div>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…