Hi
Being a programmer for many years I have always tended to keep code within the screen area so that I can see what is going on without having to scroll horizontally. I guess that the textual form of a program also conveys clarity as to readability.
So in some instances I applied this to the html syntax and added in newline characters. My concern here is that to avoid the message in this context I would need everything on one line. If it is a textual link then this is probably more than acceptable because the link wording is not long anyway. But when the link context is an image, then from my perspective it adds clarity to kind of split the html syntax up a bit.
Interestingly, I just used Expression Web 3 to insert an image and then allocate it as a hyperlink. EW3 generates standards compliant code and this is the result:
- Code: Select all
<p><a href="http://www.microsoft.com">
<img alt="Test" class="style1" height="113" src="file:///F:/My%20Web%20Sites/Silcox/image/thumb/00006_small.jpg" width="170" /></a></p>
I thought it interesting that in inserted a newline itself. Thus many of these warnings are probably EW3 derived anyway. I just wonder if we could have some kind of option to allow this kind of condition when the link is an image?
Andrew