I designed a dynamic-width container with rounded edges using border-radius, along with a bold border on one side of the container in a different color.
Everything looks fine when the browser window is small, but as I expand the window size, I notice the color bleeding through the center of my container.
Does anyone have any suggestions for fixing this issue?
The container 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 appears that the height of the container may also be contributing to the issue somehow.
Screenshot