0
Am trying too make a rounded corner curve inwards any ideas??
8 Answers
+ 2
rounded corners are made using the border-radius property in css:
example:
div {
  border: 2px solid red;
 border-radius: 25px;
}
https://www.w3schools.com/css/css3_borders.asp
+ 2
i think this is what you need:
http://jsfiddle.net/localpcguy/Evsht/4/
a bit harder to view on mobile phone, try viewing it in landscape mode
+ 2
Use the border-radius property
0
I know how to make the rounded corner curving it inward is my challenge
0
Yeah that but in the opposite direction like the curve inside the div not outside
0
Yeah the second one I also visited stack flow check if it works out for u
0
Thanks alot