GradientCircle

by Robert Altman

HTML

<div id="advanced" class="circle"></div>

CSS

.circle {
			border-radius: 50%;
			display: inline-block;
			margin-right: 20px;
		}





#advanced {
			width: 200px;
			height: 200px;
			
			background-image: -moz-radial-gradient(45px 45px 45deg, circle cover, yellow 0%, orange 100%, red 95%);
			background-image: -webkit-radial-gradient(45px 45px, circle cover, yellow, orange);
			background-image: radial-gradient(45px 45px 45deg, circle cover, yellow 0%, orange 100%, red 95%);
}