I am trying to create a website that has multiple curved lines and curved borders see image.
I am using vue and trying to make this look the same for desktop and mobile without have an image unless I have to.
I am trying to create a website that has multiple curved lines and curved borders see image.
I am using vue and trying to make this look the same for desktop and mobile without have an image unless I have to.
You can do it with SVG or with border.
Here is a demo with border.
HTML
<div class="curve"></div>
CSS
.curve {
width: 500px;
height: 100px;
border: solid 5px #000; border-color: #000 transparent transparent transparent;
border-radius: 50%/100px 100px 0 0;
}
MDN for more about border parameters