I have created a setup using HTML/CSS to showcase images of screenshots for my product:
<p>Take a look at these screenshots:</p>
<div>
<a href="images/pic1.png" target="_blank" title="Screenshot 1">
<img border="0" src="images/pic1.png" class="wbrdr"></a>
<a href="images/pic2.png" target="_blank" title="Screenshot 2">
<img border="0" src="images/pic2.png" class="wbrdr"></a>
</div>
Using the following CSS properties:
img.wbrdr
{
padding: 1px;
border: 1px solid #cccccc;
-moz-box-shadow: 3px 3px 3px #cccccc;
-webkit-box-shadow: 3px 3px 3px #cccccc;
box-shadow: 3px 3px 3px #cccccc;
height: auto;
width: auto;
max-width: 200px;
max-height: 200px;
}
Although this layout functions correctly when viewed normally, I encountered an issue while trying to access it in "Reader View" on Safari in iOS or "Reading view" on Microsoft Edge:
https://i.sstatic.net/rHFHM.png
The screenshot images did not render as expected in those instances. (However, they displayed properly in Firefox.)
Any insights on what could be causing this discrepancy?