没有样式就是最好的样式

Archive for February, 2005


mozilla专有CSS属性(-moz-)资料

Feb 26, 2005 Author: | Filed under: Uncategorized


点击这里打开新窗口浏览此网页

终于找到了这个

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

css教程 - Making Complex CSS Simple

Feb 25, 2005 Author: | Filed under: Uncategorized

Making Complex CSS Simple

有点意思,初学者可以看看。教程本身是使用 S5 做的网页幻灯片。

firefox 下的 window.open 和IE不太一样

Feb 24, 2005 Author: | Filed under: Uncategorized

FF不允许 window.open fullscreen=1 的窗口。还有好几处不一样,详细见

http://www.mozilla.org/docs/dom/domref/dom_window_ref76.html

Firefox(mozilla) 脚本触发 click()方法的问题

Feb 24, 2005 Author: | Filed under: Uncategorized

运行代码 [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 -

[Edit on 2005-2-24 9:16:11 By guoshuang]

mozilla(gecko) 的 ondragenter 问题

Feb 24, 2005 Author: | Filed under: Uncategorized

问题是

运行代码 [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+几天有时间看到这个,试验了一下,不是这些问题,继续期待答案

运行代码 [Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]

[Edit on 2005-3-1 17:25:50 By guoshuang]

在IE里面直接输入tab

Feb 23, 2005 Author: | Filed under: Uncategorized

来自 blueprince 的代码,我加了个 {} 括号否则无法输入,对 firefox 无效,可以看看。

运行代码 [Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]