2014-02-11 69 views
0

请参考下面的代码:复选框外框颜色不正确显示在IE浏览器

<div> 
    <input type="checkbox"/> 
</div> 

CSS:

input 
{ 
    outline: 2px solid gray; 
} 

小提琴链接:

http://jsfiddle.net/SVDwQ/

的Chrome浏览器截图如下所示

enter image description here

在IE浏览器看起来象下面这样:

enter image description here

我需要相同的外观,因为它显示在浏览器?为什么在IE浏览器中外观不同。

我想在两个浏览器中显示相同的复选框。

谢谢,

希瓦

回答

3

IE(除了11)加入3PX周围的复选框填充的:

input { 
    outline: 2px solid gray; 
    padding: 0; 
} 

fiddle

0

尝试添加CSS复位码等this one

/* 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; 
} 
相关问题