+ 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...

6th Aug 2020, 2:37 PM
Navneet ᏉꂅᏒოᕱ 💖(left )
Navneet  ᏉꂅᏒოᕱ 💖(left ) - avatar
2 Answers
+ 2
https://stackoverflow.com/questions/30044372/how-can-i-make-css-curved-line you can learn from here that's a nice place stacksđŸ€˜đŸ€˜
11th Oct 2020, 3:23 AM
KashishAggarwal
KashishAggarwal - avatar
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
19th Aug 2020, 12:45 PM
Josh Greig
Josh Greig - avatar