我的一个朋友有一个网站,最近我们收到了一些消息,说这组图像在IE或Firefox中未正确对齐,因此我认为错误与Google chrome有关,但不确定。

这是网站的链接:niftymodz.com - Xbox Creation Station

如果有人帮助我解决该问题,我将感到非常高兴。

请让我知道我可以提供什么其他信息以改善我的问题。

最佳答案

只是一个通常可以解决很多问题的基本答案,也可能会解决您的问题:

每个浏览器都有其默认样式。称为用户代理样式。

您需要先重置所有元素,然后再进行处理。

创建一个新的样式表名称为reset.css,并将其链接到您的网站,然后再连接其他样式表,并重置其中的所有内容。
这里有一些帮助:

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

    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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


来源:Here

09-19 15:07