01-26-2008, 10:20 AM
|
#2 (permalink)
|
|
The Contributor
Join Date: Nov 2007
Location: California
Posts: 82
Thanks: 0
|
The easiest way to do it with FF / Mozilla browsers is the following:
Code:
.rounded-top {
-moz-border-radius-topleft: .8em;
-moz-border-radius-topright: .8em;
}
.rounded-bottom {
-moz-border-radius-bottomleft: .8em;
-moz-border-radius-bottomright: .8em;
}
.rounded {
-moz-border-radius: .8em;
}
.rounded-border {
border: 1px solid #a4c0cd;
-moz-border-radius: .8em;
}
I'm pretty sure there is an IE equivilent somewhere with the filters and such, just don't have a readily example.
GL.
|
|
|
|