0

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.

Example of how screen should look

Curved lines examples

1 Answers1

1

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

Sultan Aslam
  • 4,353
  • 1
  • 33
  • 40