seyi
seyi

Reputation: 1

curve the edges of a rectangle

the css below will create a rectangle fill it with these col0ur #F6F6F6 but i want to curve the edge of the rectangle.

.bold {
border: solid 1px #e7e7e7; 
background-color: #F6F6F6;
}

Upvotes: 0

Views: 264

Answers (1)

Ish
Ish

Reputation: 29546

This should work in modern browsers

border:1px solid #aaac62;
-webkit-border-radius:8px;
-moz-border-radius:8px;
border-radius:8px;
/** hack for IE6+ */
behavior:url(border-radius.htc);

Get your border-radio.htc

Upvotes: 4

Related Questions