|
Here is the answer
此文章由 gooderic1977 原创或转贴,不代表本站立场和观点,版权归 oursteps.com.au 和作者 gooderic1977 所有!转贴必须注明作者、出处和本声明,并保持内容完整
To resolve this issue, you need to apply doctype to make you page as XHTML. People complaint that broswers are speaking different language, espeically the in-box and out-box rule. However XHTML will be rendered exactly same way cross browsers if you got style set all right. Therefore, put this code on the top of the page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
More reference please go www.w3.org. By the way, you should use DIV+CSS layout instead of table layout in any case. It helps you to seperate data and presentation in different layer. Table layout is out of style and messy!! |
|