4
I am trying to apply a linear-gradient to a DIV but it is not appearing in the browser. I have tested in Opera, Chrome, Safari and Firefox but it does not appear at all.
My CSS looks like this:
.circular-progress{
width: 12rem;
height: 12rem;
border-radius: 50%;
margin: auto;
background: linear-gradient(#666 50%, rgba(#666,.2) 50%);
}
My HTML is like this:
<div class="circular-progress"></div>