Here is my CSS code:
.corner-wrapper
{
display:table;
position:relative;
border: 2px solid #69b0ff;
margin:5px 0 5px 0;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
behavior: url("PIE.htc");
}
The rounded corners are showing up in all old versions of Internet Explorer, which is great. However, I've noticed that the margins seem to be disappearing. After doing some research, I found a few articles discussing this issue and potential bugs behind it. and
My question is - What is the most effective workaround for this problem?