I am currently in the process of updating a client's website and I have encountered issues with HTML rendering.
In the original code, all "a" and "img" tags are placed on a single line, resulting in what is known as INLINE IMG:
<div id="inside-img">
<div class="img" style="width:8643px"><a href=""><img src=""/></a><a href=""><img src=""/></a>... ...</div>
</div>
Upon rewriting the code with better indentation, resulting in what I refer to as INDENTED IMG:
<div id="inside-img">
<div class="img" style="">
<a href=""><img src=""/></a>
<a href=""><img src=""/></a>
...
</div>
</div>
However, the HTML output becomes distorted, as seen in the image I have provided.
Even though I have properly indented the HTML code, the styling seems to be affected. One major issue is that the last image shifts down instead of remaining at the end of the timeline. It is puzzling as to why this change occurs when I simply adjust the indentation of the HTML.