终于找到了这个
http://www.xulplanet.com/references/elemref/ref_StyleProperties.html
其他:
Document Object Model Events
http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html
Generated content, automatic numbering, and lists
http://www.w3.org/TR/REC-CSS2/generate.html
台湾 mozilla 资料
http://moztw.org/docs/
BTW:firefox 似乎并不支持 mng 呀?
http://libpng.org/pub/mng/mngpics.html
The CSS table model
http://www.w3.org/TR/REC-CSS2/tables.html
link prefetch
http://www.mozilla.org/projects/netlib/Link_Prefetching_FAQ.html
有点意思,初学者可以看看。教程本身是使用 S5 做的网页幻灯片。
FF不允许 window.open fullscreen=1 的窗口。还有好几处不一样,详细见
http://www.mozilla.org/docs/dom/domref/dom_window_ref76.html

[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
解释为: click method 根据 W3C标准只能赋予 input 元素而不是 img,所以…参考如下:http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-6043025
http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-17701901
BTW:i likethis pic - 
问题是
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
这是 DOM 参考
http://www.mozilla.org/docs/dom/domref/dom_event_ref33.html#1000062
下面是我在 MozillaZine Forums 提问的答复
以下为引用内容:
You’ll probably need to attach the events to the object using script rather than putting attributes in the tag. The attributes are not valid (X)HTML
Have a look at addEventListner, to see how to add events. Be warned that you are stepping into a minefield of browser incompatiblity.
See the spec for the input elment in HTML 4
以下为引用内容:
It may depend on what you’re trying to drag. If I get time I may tinker wtih this today. “addEventListener” may be the method you want to use, but it will have to be coupled with IE’s version of that method.document.forms[0].elements[0].ondragover = function() { this.value = ”; } // may work, too.
guoshuang2005-03-01+几天有时间看到这个,试验了一下,不是这些问题,继续期待答案
//document.getElementById("aaa").ondragover=function(){alert(1)}
//document.forms[0].elements[0].ondragover = function() {alert(1)}
//document.forms[0].elements[0].addEventListener(”dragenter”,function(){alert(1)},false)
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
来自 blueprince 的代码,我加了个 {} 括号否则无法输入,对 firefox 无效,可以看看。
9){document.selection.createRange().text=’ ‘; return false;}”
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]