我正在尝试制作一个 11 像素 x 11 像素的按钮,但似乎我尝试的每个浏览器的按钮最小宽度为 12 像素(IE9 除外,它是 16 像素)。有没有办法解决这个问题,还是我需要使用锚标签?
我的 CSS
#testButton
{
background-image: url(images/Sprites.png);
width: 11px;
height: 11px;
border: 0 none transparent;
}
IE 中的结果
每个浏览器都有一些默认的 CSS。尝试使用css 重置
尝试 在您的按钮 css 中添加padding
和margin
0
#testButton
{
background-image: url(images/Sprites.png);
width: 11px;
height: 11px;
border: 0 none transparent;
padding:0;
margin:0;
}