문제

How can I set a border to an image with XUL?

I've tried with

var img = document.createElement("image");
img.setAttribute("id","users_1");
img.setAttribute("style","width:30px;height:30px;cursor:pointer;border:1px solid");

But it seems to ignore it.

도움이 되었습니까?

해결책

you need to specify a color in your border defintion:

change border:1px solid to border:1px solid black

borders definitely work in xul

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top