When I create a background gradient as follows:
background: radial-gradient(ellipse at center, #ffffff 0%,#ffffff 59%,#ededed 100%);
I get an ellipse that is inside the div and matches the form of the div. Therefore, if the div is large in height, then the ellipse will be stretched vertically. If the div is a square, then the ellipse will look like a circle. This is great, I want to control the height of the ellipse.

source share