Open In App

CSS ellipse() Function

Improve
Improve
Like Article
Like
Save
Share
Report

The ellipse() function is an inbuilt function in CSS which is used to create floating text around the ellipse shape picture or anything else. 

Syntax:

circle(100px 10 px at 10px 150px);

or

ellipse( percentage percentage );

Parameter: This function accepts a single parameter length or percentage which is used to hold the value of the radius. It is a mandatory parameter.

Return value: It makes the text ellipse as the user wants.

Example 1: With the percentage procedure, we will proceed. 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        CSS ellipse() function
    </title>
 
    <style>
        div {
            float: left;
            width: 185px;
            height: 185px;
            shape-outside: ellipse();
        }
 
        img {
            border-radius: 0px 175px 175px 0px;
        }
 
        h1,
        h4 {
            text-align: center;
        }
 
        h1 {
            color: green;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h4>CSS | ellipse() function</h4>
    <div>
        <img src=
             alt="Sample image">
    </div>
 
    <p>
          How many times were you frustrated while looking out for a good
        collection of programming/algorithm/interview questions? What did
        you expect and what did you get? This portal has been created to
        provide well written, well thought and well explained solutions for
        selected questions. An IIT Roorkee alumnus and founder of
        GeeksforGeeks. He loves to solve programming problems in most
        efficient ways. Apart from GeeksforGeeks, he has worked with DE Shaw
        and Co. as a software developer and JIIT Noida as an assistant
        professor.It is a good platform to learn programming. It is an
        educational website. Prepare for the Recruitment drive of product
        based companies like Microsoft, Amazon, Adobe etc with a free
        online placement preparation course.
    </p>
 
</body>
 
</html>


Output: 

Example 2: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        CSS | ellipse() function
    </title>
 
    <style>
        h1 {
            color: green;
        }
         
        img {
            -webkit-clip-path: ellipse(
              farthest-side closest-side at 50px 100px);
           
            clip-path: ellipse(
              farthest-side closest-side at 50px 100px);
        }
    </style>
</head>
 
<body>
    <center>
        <h1>GeeksforGeeks</h1>
        <h4>CSS | ellipse() function</h4>
        <img src=
             alt="CSS ellipse function">
    </center>
</body>
 
</html>


Output: 

Supported Browsers: The browsers supported by CSS | ellipse () Function are listed below: 

  • Google Chrome 37 and above
  • Microsoft Edge 79 and above
  • Internet Explorer not supported
  • Firefox 54 and above
  • Safari 10.1 and above
  • Opera 24 and above


Last Updated : 05 Jul, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads