| Subcribe via RSS

html editer

March 9th, 2008 | No Comments | Posted in web

这个工具强的。。。貌似是基于yui的,厄,俺真要好好琢磨下js了

test:http://williamduff.name/YahooPages/

Tags:

ie8beta1

March 6th, 2008 | No Comments | Posted in computer, web

动作真快啊,昨天晚上看到的站点里面下载连接都还是不能用的,今天就放出来鸟。

我等柔弱之人又将迈向 更深一级的无间炼狱。据说是完全支持css2.1,部分支持css3和html5了。去单位装个虚机试试看吧,希望这个世界不要过于美妙啊

下载地址:Internet Explorer 8 Beta1

Tags:

utom-cssForms

March 4th, 2008 | No Comments | Posted in web

赞一下,utom这套表单控件真是简洁大方哈。俺很头疼select模拟这块的东东,js太弱啊

Demo: Click here!!!

Download: Click here!!!

Tags:

firefox3 focus outline

February 13th, 2008 | 2 Comments | Posted in computer, web

ff3的连接点击总会出现那个恼人的虚线边框,实际上是Firefox在<a>这个标签处于focus状态时给它加的outline,解决办法是在CSS里写上:

a {
outline: none;
}

或者:

a:focus {
outline: none;
}

一劳永逸的办法在about:config里browser.display.focus_ring_width:0

Tags:

selection style

January 20th, 2008 | No Comments | Posted in web

::-moz-selection{
background:#6374AB;
color:#fff;
}
::selection {
background:#6374AB;
color:#fff;
}
code::-moz-selection {
background: #333333;
}
code::selection {
background: #333333;
}

以前看到别人的站点内,鼠标选中的文字背景色与win默认的样式不同,觉得挺有意思,但一直没去仔细研究。今天在网上闲逛的时候看到了这个,but Supported by Mozilla and Safari.在次记录一下

恩,上周末的加班导致感冒在家躺了2天,鼻子塞得跟北京交通的早晚高峰一样,难受至极啊。

预备开始啃javascritp

Tags: