I spent a bit of time working on building a stamp border using CSS. CSS is Cascading Style Sheets. It describes how HTML elements (like a image or box) are to be displayed on screen. The idea is that once you write the CSS code, it can be applied to anything on the page and/or any other page.
And when you click on web page, the code is sent to your browser, your browser reads the code, and then your browser generates the page you see. The trouble is that not every browser (or browser version) will read the code and generate the page the same way!
So on the opening page of Stamp Smarter, the new stamp border CSS can be seen as below (black perfs bordering the white boxes).

This code frames the element (image or box) and resizes properly in Internet Explorer (version 9, 10., 11), FireFox (last 3 versions) and Chrome (last three versions) . But when I run it under Edge, it does this…

Oddly it doesn't work at all on the upper white boxes yet manages to generate only the bottom border on the lower boxes!?! Huh? I have searched, done discovery, and tested for three days and cannot figure out a solution for this. Grrrr.
If anyone knows a solution, here is the CSS code. (Reward to anyone who solves this!)
.don_border_new2 {
border-width: 15px;
border-image-outset: 8px;
border-image: url(../img/border2.png) 8 / 8px round;
-webkit-border-image: url(../img/border2.png) 8 / 8px round;
-moz-border-image: url(../img/border2.png) 8 / 8px round;
-o-border-image: url(../img/border2.png) 8 round;
}
The lesson here is that next time you run into something weird on a webpage, don't be too quick to blame the developer/company. While there are standards which browser are supposed to adhere to, there is enough variance to cause some incredible headaches.
Don