A multiline text is positioned on an image. The text should appear on a white background like taped. Each line of the text needs a small padding at the left and right side. This can be achieved with a box-shadow for the inline text.
div.slide {
background-color: black;
height:200px;
width:600px;
}
div.show {
position:absolute;
top:50px;
left:50px;
color:black;
width:200px;
}
h3 {
color:black;
background-color:white;
display:inline;
-moz-box-shadow: 5px 0px 0px white, -5px 0px 0px white;
-webkit-box-shadow: 5px 0px 0px white, -5px 0px 0px white;
box-shadow: 5px 0px 0px white, -5px 0px 0px white;
}
<div class="slide">
<div class="show">
<h3>Lorem ipsum dolor sit amet, consetetur sadipscing elitr</h3>
</div>
</div>
Unfortunatelly firefox' result is not the same as of chrome. But I couldn't claim that firefox' behaviour isn't correct. But how can I achieve the chrome result for firefox?