0

In CSS, what property can we use to make a wave-like shape out of a div? I tried using the border tag but it doesn't work. This is the shape I want to make:

how I want the div shaped

And here is the main code and container:

<!DOCTYPE html>
<html>
<head>
<style>

.wave{
background-color:#0a95ff;

width:100%;
height:300px;


}

</style>
</head>
<body>

<div class="wave"> </div>


</body>
</html>
  • hope this answer your question - https://stackoverflow.com/questions/17202548/wavy-shape-with-css – Jarvis Sep 16 '22 at 01:56

1 Answers1

-1

Maybe make a half circle and put them side-by-side.

kitis
  • 1
  • 3