gpt4 book ai didi

想要改善跨浏览器体验的现有纯 IE 站点的 CSS 重置表?

转载 作者:行者123 更新时间:2023-11-28 19:02:51 24 4
gpt4 key购买 nike

我正在开发一个内部自定义 ASP.NET 站点,客户指定该站点只需要在 Internet Explorer 中工作。这意味着没有提出任何资源来确保它在其他浏览器中工作和看起来不错,尽管没有使用仅用于 IE 的奇异技术或类似的技术。

由于最终有人会希望其他浏览器也能正常工作,所以我想知道是否存在类似 CSS Reset 样式表的东西可以帮助其他浏览器的布局更像 IE。

我正在寻找专门用于使 Firefox、Chrome 等更像 IE 的重置样式表(我相信没有人会对此留下令人讨厌的评论),不会破坏太多现有布局(目前仅在 IE7 上测试过)。

我知道我会遇到 Javascript 等方面的其他问题,但这个问题仅与 CSS/布局有关。

简而言之,是否存在将 CSS“重置”为 IE 默认值的 CSS 重置表?

最佳答案

它不是专门为 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 文件中,并使用以下命令调入主 styles.css 文件的顶部:@import "reset.css";

关于想要改善跨浏览器体验的现有纯 IE 站点的 CSS 重置表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4947003/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com