How can I create a div with rounded corners and transparent backgrounds? A bit like twitter does. So that at the edge of the corners you can see the page background and not a black edge.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
for a simple Radius, use this CSS:
Greez, Chuggi |
|||
|
|
For full control over which elements are transparent and which are not, specify colors in rgba instead of hex:
The fourth number within rgba is the level of transparency (alpha channel), 1 represents fully opaque and 0 is fully transparent. |
|||
|
|
|
Using css3:
You can read more about it here: http://www.css3.info/preview/rounded-border/ |
|||
|
|