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.
在这个页面上,我无法让 IE 在页面的全宽中显示深红色的标识标题。但是它在 FF 和 Chrome 中运行良好。你有什么建议吗?
尝试给予#header width: 100%;而不是width: auto;
#header
width: 100%;
width: auto;
添加:
body, html { padding: 0; margin: 0; }
到您的 CSS 文件。
你总是可以为 IE 做一个条件语句。
<!--[if IE]> <style type="text/css"> /*Put your styles specific for ie below*/ </style> <![endif]-->