Css , XUL 小笔记


1.Css小笔记

div:frist-child
是选择第一个div , 不是选择div的第一个子元素

一个有质感的边框需要由两个1px的不同颜色的拼凑起来(css样式凹凸不能精确指定颜色)

2.XUL小笔记

open时加上参数
popup=yes就是总是显示在最前面的窗口
但是没有透明效果了

________________________

window.openDialog(
    'chrome://xdou/content/notify.xul',
    "",
    "chrome,dialog=yes,titlebar=no,popup=yes",
    "这里可以往这个窗口传入参数"
);

然后这个窗口
这里可以这样获取这个参数
window.arguments[0];


3.
firefox新加入nsIIdleService,可以提供"用户是否已经离开"状态的查询.
The idle service lets you monitor how long the user has been 'idle', i.e. not used their mouse or keyboard.
http://developer.mozilla.org/en/NsIIdleService

你可能感兴趣的:(css,chrome,firefox)