You can use this CSS to add a radius border background to ALL items:
.breadcrumbs {
padding: 10px 0;
}
.breadcrumbs a {
padding: 5px;
background-color: #f00;
border-radius: 4px;
color: #fff;
}
.breadcrumbs a:hover {
background-color: #0f0;
color: #fff;
}
But if you just want to style the home item then you can do this:
.breadcrumbs {
padding: 10px 0;
}
.breadcrumbs .home {
padding: 5px;
background-color: #f00;
border-radius: 4px;
color: #fff;
}