0

I post this thread, because I need help for something please. I would like to create negative border radius for my navigation links (like this): http://prntscr.com/9vi0b5

As you can see, there is normal border radius at the top, but at the bottom, we have negative border radius. On the image above, two images are used to make the effect, but I want something with CSS only please. Something that I can edit when I want, you know?

Thank you.

Harry
  • 87,580
  • 25
  • 202
  • 214
Uptop 14
  • 221
  • 1
  • 10

1 Answers1

0

I do not think this is possible.

But a solution could be to use :before and :after to build this effect.

Something like

:before {
  border-bottom-right-radius: 5px;
}

:after {
   border-bottom-right-radius: 5px;
}
Dionys
  • 3,083
  • 1
  • 19
  • 28