1
Well I’m trying to build a progress bar with css, and the progress value is 13.20% The problem is that this getting a degrade effect, and I want it to change from one color to another.
.notification {
padding: 15px;
color:#FFFFFF;
font-style: italic;
text-align: center;
background:#F65314;
background: -moz-linear-gradient(left, #F65314 13.20%, #000 86.80%);
background: -webkit-linear-gradient(left, #F65314 13.20%, #000 86.80%);
background: linear-gradient(left, #F65314 13.20%, #000 86.80%);
}
<div class="notification">
erwerwerwrwrwerw
</div>
This linear-gradient is calling the degrade effect, no?
– who who who who
Yes, I used it to give an example of what I want to do. You know a better way to make this bar?
– Hugo Borges