The link is here and I hope everyone just sees a repetition of the entire border image in each corner:
https://floatinggatesgame.com/devlog/index.html
The CSS is extremely simple for now:
display: block;
margin: 0 auto;
max-width: 900px;
border-image: url('border.svg');
border-image-slice: 145px 62px;
border-style: solid;
border-width: 62px;
I was learning according to this:
https://developer.mozilla.org/en-US/docs/Web/CSS/border-image-slice
What did I misunderstand here?
(PS. Yes, I know the tiling isn't set up correctly in my SVG yet, I wanted to see how it looked before I began adjusting it...)
border-image-slice
is looking for a percentage value on vector images (SVG), not a pixel value that you would use for a raster graphic (jpg, etc). If you check the inspector on your site, you'll notice it's tagged as invalid because of that so you've hit whatever the browser is deciding to do with your border at this point. See: https://developer.mozilla.org/en-US/docs/Web/CSS/border-image-slice