I'm trying to apply a linear-gradient to a DIV but it's not appearing in the browser. I've tested 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 looks like this:
<div class="circular-progress"></div>