I have a fluid-width div with rounded corners using the border-radius, as well as a large border on one-side of the div colored differently.
When the browser window is small enough, the borders all behave as it should. However, when I enlarge the window size, I start to see the color bleed through in the center of my div.
I was wondering if anyone had an idea of a possible solution could be.
The div has two classes:
.info-box {border: 1px solid #CCC; margin-bottom: 15px; -moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px; background: #F3F3F3;}
.seller-msg {border-left: 7px solid #EF831B;}
It seems like the height of the div is also affecting it as well somehow.
Screenshot
