Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
370 views
in Technique[技术] by (71.8m points)

html - How to get rid of a white border around a bar

Im trying to make a site and it needs to have a progress bar in it. But whenever I try to make it, it just makes a white border around the bar for no reason. I dont really know how to fix it.

hr.someClass {
  background-color: blue;
  width: 200px;
  height: 12px;
}
 <hr class="someClass">
question from:https://stackoverflow.com/questions/66051526/how-to-get-rid-of-a-white-border-around-a-bar

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...