+ 1
A just doubt!.... Please can you help.....
I want to make a curve line, but i don't know how to make??? 🤔 🤔 Please help me to make it...
2 Respuestas
+ 2
https://stackoverflow.com/questions/30044372/how-can-i-make-css-curved-line
you can learn from here that's a nice place
stacks🤘🤘
0
If you want a circular or elliptical line, some CSS might fit your needs.
You could set a
Something like this will give you curved corners on a square:
display: block;
width: 100px;
height: 100px;
background-color: #fff;
border: 1px solid #000;
border-radius: 20px;
More details on border-radius at:
https://www.w3schools.com/cssref/css3_pr_border-radius.asp
If you want bezier curves, SVG's path element could do the trick. SVG can be embedded in HTML.
More details on path are at:
https://www.w3schools.com/graphics/svg_path.asp