红色边框的内容在IE6/7下显示乱码。但是在IE8和firefox下没问题。有没有办法纠正呢?谢谢。
问问题
39 次
2 回答
0
为 IE 版本维护单独的 CSS 文件,并在页面标题中提及此 CSS 条件注释。在原装 IE 浏览器中测试。
于 2012-11-05T06:14:02.163 回答
0
使用 css 重置所有样式以保持浏览器之间的兼容性很重要。
网上有各种各样的模型和例子,我在我的项目中使用这个:
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {
padding: 0;
margin: 0;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset,img {
border: 0;
}
address,caption,cite,code,dfn,em,strong,th,var {
font-weight: normal;
font-style: normal;
}
ol,ul {
list-style: none;
}
caption,th {
text-align: left;
}
h1,h2,h3,h4,h5,h6 {
font-weight: normal;
font-size: 100%;
}
q:before,q:after {
content:'';
}
abbr,acronym { border: 0;
}
/* HTML5/IE 6,7,8 */
article, aside, figure, footer, header, hgroup, menu, nav, section { display: block; }
于 2012-11-05T02:08:46.870 回答