I\'m using the following CSS code to create a box around some content/links:
.box { border-top-left-radius: 25px;
You can use color instead of border-color which inherits the color of the border as well:
color
border-color
.box { border:2px solid; color: #000; } .box:hover { color:purple; }
See this demo here.