div css style rectangle code example
Example 1: css circle
#circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%
}
Example 2: how to create a shape in css
div {
clip-path: polygon(100% 100%, 100% 100%, 100% 100%)
}