I am working in Bootstrap 4 alpha and I'm having trouble customizing certain elements like the border-radius, bar base color, and filled color. Can anyone help me figure this out?
I've tried to manipulate the code below, but unfortunately, it's still not quite right.
HTML Code:
<div class="b4-test">
<progress class="progress" value="75" max="100">75%</progress>
</div>
CSS Code:
.b4-test{
padding:50px;
width:500px;
margin:50px auto;
text-align:center;
background:#ccc;
}
progress{
border-radius:0 !important;
background-image:none !important;
background-color:red !important;
color:green !important;
height:50px;
}