Answers for "how to make an oval in css"

CSS
0

ovale css

.ovale {
  width: 75px;
  height: 120px;
  background: #9a4;
  -webkit-border-radius: 100px / 160px;
  -moz-border-radius: 100px / 160px; 
  border-radius: 100px / 160px; 
}
Posted by: Guest on May-11-2021
5

how to create a shape in css

div {
	clip-path: polygon(100% 100%, 100% 100%, 100% 100%)
}
Posted by: Guest on June-27-2020

Code answers related to "how to make an oval in css"

Browse Popular Code Answers by Language