关于CSS DIV IE7 IE8兼容性问题

2024-12-13 02:19:22
推荐回答(4个)
回答1:

这样写兼容

margin:0 1px 0 1px; 针对火狐

+margin:0 3px 0 3px; 针对IE7

_margin:0 2px 0 2px; 针对IE6

margin:0 1px 0 1px\0; 针对IE8

也就是说你出问题的部分 需要写4句不同的代码去挨个测试,如果都OK了,那就都兼容了,这4句只要加上我给你写的兼容 就互不影响。

回答2:

/* v1.0 | 20080212 */

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,
b, u, i, center,
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-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}

/* remember to define focus styles! */
:focus {
outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
text-decoration: none;
}
del {
text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
border-collapse: collapse;
border-spacing: 0;
}

很多兼容问题,都是各个浏览器对不同的标签有不同的默认值做成的,所以最好在每次做CSS前,都加入上面一个代码reset一下各个浏览器的默认设置,这样后面的设计你会少遇到很多麻烦。

上面这个就是大名鼎鼎的“CSS Tools: Reset CSS”,可以查看参考链接或搜索一下Reset CSS。

回答3:

把源码贴出来我给你看看

回答4:

求原码.....