> From: berry > I would like to know if I can insert image into list ? > I have used this method by the past but in an article I read > that it was > not standard? > w3 say nothing about that ?
The best way to find out if it's standard as per W3C is to run it through the validator http://validator.w3.org/ And in answer to your query: I don't see why it wouldn't be standard, provided you're coding it properly. Heck, you can stick paragraphs and such in list items, so why not images? <ul> <li><img src="..." alt="good alternate text goes here" /></li> </ul> Patrick ________________________________ Patrick H. Lauke Webmaster / University of Salford http://www.salford.ac.uk ****************************************************** The discussion list for http://webstandardsgroup.org/ See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
