想要改善跨浏览器体验的已存在IE浏览器网站的CSS重置表?

我正在开发一个由客户指定的内部自定义ASP.NET站点,只需要在Internet Explorer中工作。这意味着没有提出任何资源来确保其工作并且在其他浏览器中看起来很好,尽管没有使用异国情调的IE技术或类似的东西。 由于最终有人想要其他浏览器工作,我想知道是否存在类似CSS重置样式表的东西,可以帮助使其他浏览器布局更像IE。 我正在寻找一个专门用于制作Firefox,Chrome等的复位样式表,其行为更像IE(我敢肯定没人会留下关于此的令人讨厌的评论),这不会破坏现有布局的太多(经过测试目前只在IE7上)。 我知道我还有其他Javascript等问题,但这个问题只是关于CSS /布局。 简而言之,是否存在CSS重置表以将CSS“重置”为IE默认值?     
已邀请:
它不是专为IE设计的,但你可以使用它 - 它真的不会有太大的区别,你真正需要做的是应用它然后调整你现有的样式,所以它在所有浏览器中看起来都一样。
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
outline: 0;
}
body {
line-height: 1;
color: black;
background: white;
}
ol, ul {
list-style: none;
}
/* tables still need ‘cellspacing=”0″‘ in the markup */
table {
border-collapse: separate;
border-spacing: 0;
}
caption, th, td {
text-align: left;
font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: “”;
}
blockquote, q {
quotes: “” “”;
}
将它分配到一个单独的.css文件中,并使用:
@import "reset.css";
调用主要styles.css文件的顶部     

要回复问题请先登录注册