---
title: "How to make half cut moon with CSS?"  
description: "How to make half cut moon with CSS?"  
author: "Ethan Karla"  
published: 2021-07-15  
updated: 2021-07-15  
canonical: https://www.mindstick.com/forum/156491/how-to-make-half-cut-moon-with-css  
category: "css-css3"  
tags: [".net", "web development", "html", "css-css3", "html5"]  
reading_time: 1 minute  

---

# How to make half cut moon with CSS?

Is it possible to make a half cut [moon](https://www.mindstick.com/news/3936/china-s-chang-e-6-probe-lifts-off-with-samples-from-the-moon)? If it is possible state with the help of example.

## Replies

### Reply by Ravi Vishwakarma

![How to make half cut moon with CSS?](https://www.mindstick.com/mindstickforums/4400c73a-a99d-47a3-a681-520d2f5b1302/images/2508aed6-ca19-41c1-89cd-8fd53c5fad9f.png)

```
<!DOCTYPE html>
<html lang='en' xmlns='http://www.w3.org/1999/xhtml'>
<head>
    <meta charset='utf-8' />
    <style type='text/css'>
        body{
            text-align:center;
            display: flex;
            flex-direction:column;
            justify-content: center;
            align-items: center;
        }
            body div {
                margin: 50px;
            }
                    .moon {
            width:200px;
            height:200px;
            border-radius:50%;
            box-shadow:20px 10px 0px 10px cyan;
        }
    </style>
    <title>Animation Demo</title>
</head>
<body>
    <div class='moon'>  </div> Half cut Moon <br />
</body>
</html>
```

\


---

Original Source: https://www.mindstick.com/forum/156491/how-to-make-half-cut-moon-with-css

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
