After adding a box shadow to the mark tag for extra spacing on the right and left, I noticed that all browsers except Internet Explorer display it correctly. However, in IE, there is a 1px border-like effect visible. Is there a solution to fix this issue?
mark {
font-size: 24px ;
background-color: rgba(0,0,0,0.5);
line-height: 48px;
max-width:350px;
color: #fff;
-webkit-box-shadow: rgba(0,0,0,0.5) -15px 0 0 0, rgba(0,0,0,0.5) 15px 0 0 0;
-moz-box-shadow: rgba(0,0,0,0.5) -15px 0 0 0, rgba(0,0,0,0.5) 15px 0 0 0;
box-shadow: rgba(0,0,0,0.5) -15px 0 0 0, rgba(0,0,0,0.5) 15px 0 0 0;
}
<mark>Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum Lorem ipsum</mark>