ボタン内に配置した画像があり、問題は Firefox にあります。画像は適切に配置されていますが、IE では画像がボタンの右隅に移動しています。
私はそれを中央に揃えるために多くの方法を試しましたが、何もうまくいきませんでした。ボタンと画像を動的に作成していますが、画像の幅と高さを減らしました。これが IE で不適切に配置されている理由ですが、画像とボタンの高さと幅を変更したくありません。
これが私が今使っているコードです:
var button = document.createElement("button");
button.setAttribute("type","button");
button.setAttribute("id","primaryDelTel"+nameCode+telephoneCount);
button.setAttribute("class","greybutton");
button.setAttribute("style","width:20px;height:20px;");
var delButton = document.createElement("img");
delButton.setAttribute("src","/theme/images/deleteButton.png");
delButton.setAttribute("height","10");
delButton.setAttribute("width","9");
button.appendChild(img);