I have a div with rounded corners but I would like to invert these rounded corners to create a bowl effect.
Here is what I currently have:
html{
background:red;
}
#test {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 150px;
border-top-left-radius: 50%;
border-top-right-radius: 50%;
background: blue;
}
<div id="test"></div>
So instead, I would like it to look like:
Is this even possible with CSS?
Update
If not already clear, the 'red' is meant to illustrate the rest of the body of the page and will need to be transparent