Get your own website Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<head>
<style>
#img1 {
  clip-path: ellipse(50% 35%);
}
#img2 {
  clip-path: ellipse(40% 25%);
}
#img3 {
  clip-path: ellipse(40% 50%);
}
</style>
</head>
<body>
<h1>The ellipse() Function</h1>
<p>clip-path: ellipse(50% 35%):</p>
<img id="img1" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<p>clip-path: ellipse(40% 25%):</p>
<img id="img2" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<p>clip-path: ellipse(40% 50%):</p>
<img id="img3" src="pineapple.jpg" alt="Pineapple" width="300" height="300">
<p>Original image:</p>
<img src="pineapple.jpg" alt="Pineapple" width="300" height="300">
</body>
</html>