I'm trying to set up a progress bar with css, and the progress value is 13.20%. The problem is that it's getting a gradient 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>