I am dealing with a collection of image "strips" that when combined create one larger image. I am now attempting to add a border around the composite image and center it within an HTML page.
Despite my efforts, I am struggling to align the <div>
containing multiple <img>
tags in the middle of the page. I am seeking a CSS-only solution with minimal code as I intend to automate this process with a bash script.
Thank you, Milan
Edit:
It seems I must provide some code, although it is quite basic:
<html><head>
<style>div{font-size:0px; border: 5px solid red; display:inline-block;}</style>
</head><body>
<img ...><img ...><img ...><img ...>
</body></html>