View Single Post
  #4  
Old 08-24-2006, 01:31 PM
 
jdedba jdedba is offline
 

Advanced Member
  
Join Date: Dec 2004
Posts: 96
 

Default Re: Problem with Firefox not displaying Head Correctly

I just had a problem with Firefox in <td align="middle">

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <body> <table width="100%"border=1><tr><td style="WIDTH: 300px" align="middle">Test</td></tr></table> </body> </html>
does not make the "Test" in the middle. But

Code:
<html> <body> <table width="100%"border=1><tr><td style="WIDTH: 300px" align="middle">Test</td></tr></table> </body> </html>
works. It make "Test" in the middle.

X-cart uses <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

??
__________________
version 4.1.1
Reply With Quote