按钮没有按比例缩小图像?

时间:2015-09-06 09:36:36

标签: html css image imagebutton

我的页面上的<img>中有200px * 200px <button>。如果我使用CSS缩小图像:

img{
    width:50%;
    height:50%;
}

,按钮仍然很大,好像图像仍然是全尺寸的。

任何解决方案?

感谢。

1 个答案:

答案 0 :(得分:0)

试试这个:

&#13;
&#13;
        img {
          width: 50%;
          height: auto;
        }
&#13;
<button>
  <img src="https://www.google.co.uk/images/srpr/logo11w.png" />
</button>
&#13;
&#13;
&#13;