如何使用XUL为图像设置边框?
我试过
var img = document.createElement("image");
img.setAttribute("id","users_1");
img.setAttribute("style","width:30px;height:30px;cursor:pointer;border:1px solid");
但它似乎忽略了它。
答案 0 :(得分:1)
您需要在边界定义中指定颜色:
将border:1px solid
更改为border:1px solid black
边界绝对适用于xul