当在firefox中缩小时,DIV背景图像被切断

时间:2013-04-17 23:56:14

标签: html css css3

我有一个高度/宽度为15px的DIV。 它有一个背景图像,高度/宽度为15px。 问题是当在Firefox中缩小某些级别时,背景图像在右侧和底部被切掉几个像素。 这是link和下面的代码。尝试在firefox中查看。

 <div id="custom-checkbox"></div>

 #custom-checkbox 
 { 
     background: url('http://s16.postimg.org/5xacziapd/unchecked.png') no-repeat; 
     width: 15px;
     height: 15px; 
 }

1 个答案:

答案 0 :(得分:0)

这是我能得到的最好的显示其余的只是firefoxes像素舍入。

    #custom-checkbox   
{   
    background: url('http://s16.postimg.org/5xacziapd/unchecked.png') no-repeat;   
    width: 15px !important;  
    height: 15px !important;  
    display:table;  
}  

希望这有助于我做到最好。