Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Invert rounded corner in CSS?

I have a css code:

-moz-border-radius-topleft:50px; 

I get the result:

rounded corner

Is there any possibilities to give like this:

inverted rounded corner

like image 254
Mubeen Avatar asked Oct 25 '10 05:10

Mubeen


People also ask

How do you make a fancy inverted border radius in CSS?

The trick to making the inverted border radius (at least using this method) is to create a pseudo element, and then cut a normal border radius out of that element. Let's set up the pseudo element, and let's at the same time already add the border radius to it to speed life up a little bit!

What CSS property gives rounded corners?

The border-radius CSS property rounds the corners of an element's outer border edge.

Can CSS borders be negative?

It is possible to give margins a negative value. This allows you to draw the element closer to its top or left neighbour, or draw its right and bottom neighbour closer to it.


1 Answers

Just to update this, it seems you can in multiple ways.

Lea Verou posted a solution

Here is mine using border-image

Using border image

html

<div><img src="https://s3.amazonaws.com/resized-images-new/23292454-E6CD-4F0F-B7DA-0EB46BC2E548" /></div> 

css

div {     width: 200px;                border-width: 55px;     -moz-border-image: url(http://i47.tinypic.com/2qxba03.png) 55 repeat;     -webkit-border-image: url(http://i47.tinypic.com/2qxba03.png) 55 repeat;     -o-border-image: url(http://i47.tinypic.com/2qxba03.png) 55 repeat;     border-image: url(http://i47.tinypic.com/2qxba03.png) 55 repeat;     margin: 50px auto;    } 

Using radial gradient

Lea Verou's solution

html

<div class="inner-round"></div> 

css

.inner-round {     background-image:         radial-gradient(circle at 0 0, rgba(204,0,0,0) 14px, #c00 15px),         radial-gradient(circle at 100% 0, rgba(204,0,0,0) 14px, #c00 15px),         radial-gradient(circle at 100% 100%, rgba(204,0,0,0) 14px, #c00 15px),         radial-gradient(circle at 0 100%, rgba(204,0,0,0) 14px, #c00 15px); } 
like image 69
Chris Burton Avatar answered Sep 26 '22 08:09

Chris Burton