asmith Posted December 26, 2007 Share Posted December 26, 2007 IE got a problem in reading tables . it can't read a table which the row has a background image : <table><tr background="image.gif"><td> IE !!! again IE !!!! </td></tr></table> fire fox do it fine . any idea how can i set a background for a row (<tr>) of a table in IE ?? (i've used inline CSS ,outline , CSS link on another css file, none worked out ) Quote Link to comment Share on other sites More sharing options...
TheFilmGod Posted December 26, 2007 Share Posted December 26, 2007 maybe don't use tables? Only use tables for tabular data or for anything with more than 2 columns. Otherwise you can use floats or the power of CSS!! Quote Link to comment Share on other sites More sharing options...
monkeytooth Posted December 26, 2007 Share Posted December 26, 2007 Problem 1.......... <table><tr background="image.gif"><td> IE !!! again IE !!!! </td></tr></table> Should be <table><tr><td background="image.gif"> IE !!! again IE !!!! </td></tr></table> I usually change the background of each cell individually.. but thats just me.. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.