View Single Post
Old 01-26-2008, 10:20 AM   #2 (permalink)
dschreck
The Contributor
 
dschreck's Avatar
 
Join Date: Nov 2007
Location: California
Posts: 82
Thanks: 0
dschreck is on a distinguished road
Default

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.
dschreck is offline  
Reply With Quote