does the filename in src attribute of an img tag has a limit in number of characters? or compatibility issue among operating system(OS) browsers…
for example:
<img src="../img/misc/this-is-a-very-long-image-filename-of-an-image-named-leaders-systems02.gif" alt="Leaders Systems" class="emblem" />
is there no issue on this-is-a-very-long-image-filename-of-an-image-named-leaders-systems02.gif in all OS browsers??
You will be bounded by the maximum URL length per browser. The HTTP server may also send you an HTTP 414 “Request URI too long”. The standard does not dictate what this size is, but allows a server to make such a response.
From the HTTP/1.1 standard S10.4.15: