2013-05-15 59 views
0

我有一個48x48的圖像用於圖標按鈕。我發現我可以用16x16的下面的html代碼。html5中的圖標按鈕不能用於CSS類規範

<button> 
    <img src="48x48.png" width="16" height="16"/> 
</button> 

但是,如果不是我用

<!DOCTYPE html> 
<html> 
<head> 
<style> 
.actionButton{ 
    width:16; 
    height:16; 
} 
</style> 
</head> 

<body> 
<button> 
    <img src="48x48.png" class="actionButton"//> 
</button> 
</body> 
</html> 

按鈕的大小始終是48×48。

回答

4

您需要的設備添加到你的CSS即px如下:

.actionButton{ 
    width:16px; 
    height:16px; 
} 
0

Helllo,

您可以使用此:

<img src="48x48.png" style="width=18px; height=18px;" /> 

或者中庸之道調整圖像大小。