[Solved] Make a pure css circle with gradients and without gradients


Without gradients

.circle {
    width: 200px;
    height: 200px;
    -moz-border-radius: 50%; 
    -webkit-border-radius: 50%; 
    border-radius: 50%;
    background: #4679BD;
}

solved Make a pure css circle with gradients and without gradients