3

I would like to make this effect rounded with CSS.

enter image description here

But, I'm only able to do this effect:

enter image description here

This is the code:

Edit eloquent-curie-one0o

How can I do this effect and being responsive?

José Carlos
  • 2,850
  • 12
  • 59
  • 95

1 Answers1

3

Just change px for %: border-radius: 0px 0px 50% 500%;:

body {
  height: 100vh;
  width: 100%;
}

#oval {
  position: relative;
  width: 100%;
  height: 100px;
  background: #ffffff;
  border-radius: 0px 0px 50% 500%;
}
<div style="width: 100%; height: 100px; background-color: #30393b">
  <div id="oval" />
</div>
<div style="width: 100%; height: 100px; background-color: #30393b" />
Daniel_Knights
  • 7,940
  • 4
  • 21
  • 49