Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
看看http://store.auswidesaw.com.au/这个页面在 Firefox、Chrome、Opera 甚至 IE10 中都能正确显示,但在 IE9 和更低的内容中都显示在左侧栏中。无法解决问题,有什么建议吗?
如果没有 doctype 声明,IE 就会进入 Quirks 模式。向您的页面添加 doctype 以使 IE 与标准很好地配合。
这是 html 5 版本:
<!DOCTYPE html> <html><!-- ... rest of html --> </html>