Reputation: 1
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
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