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:
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>