Encountering an issue where the bottom border is overlapping the right border on the same element.
Here's a visual representation of the problem:
The green right border's bottom is appearing distorted due to the presence of the gray border at the bottom. How can this be rectified?
This is the current CSS styling being used:
.side-menu{
list-style-type: none;
margin: 0px;
padding: 0px;
}
.side-menu li{
border-bottom: 1px solid #E6E7E9;
padding: 7px;
padding-left: 0px !important;
width: 192px;
}
.side-menu li.active{
color: #CACDD0;
border-right: 6px solid #2CC588;
width: 199px;
}
Edit: Also, provided a jsFiddle link for reference: http://jsfiddle.net/wu958/