ul.box {position: relative;z-index: 1; /* prevent shadows falling behind containers with backgrounds */overflow: hidden;list-style: none;margin: 0;pad...
分类:
其他好文 时间:
2014-09-12 13:24:53
阅读次数:
279
Problem Description
The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He was a member of the Oulipo group. A quote from the book:
Tout avait Pa...
分类:
其他好文 时间:
2014-09-12 10:16:23
阅读次数:
245
At the time the Story of My Life was published, the idea of a disabled person as an active member of society was radical. Through there were institute...
分类:
其他好文 时间:
2014-09-12 01:11:42
阅读次数:
268
1 类中的属性又叫成员变量(member variable),属性用英文(property)或者attribute2 对象(Object) 又叫做实例(Instance)。生成一个对象的过程叫做对象的实例化3 面向对象编程中命名的约定:(a) 类:首字母大写,如果一个类名由多个单词构成,那么每个单词...
分类:
编程语言 时间:
2014-09-12 01:06:52
阅读次数:
155
$(':input','#myform') .not(':button, :submit, :reset, :hidden') .val('') .removeAttr('checked') .removeAttr('selected');
分类:
其他好文 时间:
2014-09-11 23:34:22
阅读次数:
147
1、IE6下的双边距bug 双边距bug 2、IE6下的1px偏差 IE6的1px偏差 3、IE6下overflo: hidden;不起作用。解决方案:这时候给父级也添加position:relative; ...
分类:
其他好文 时间:
2014-09-11 20:54:22
阅读次数:
174
将某个组中的账户移动到新的OU下#定义组名$groupname = "testg"#定义新的OU名称$newou = "OU=oo,OU=Admins,dc=ddv,dc=com"$members = (get-adgroup $groupname -properties member).membe...
分类:
移动开发 时间:
2014-09-11 19:19:42
阅读次数:
184
overflow-x:scroll是横的有overflow-y:scroll是竖的有overflow:scroll横竖有overflow:hidden横竖都没有
分类:
其他好文 时间:
2014-09-10 20:56:40
阅读次数:
161
题意:给你两个字符串,为你第一个字符串的前缀等于第二个字符串的后缀的最大长度是多少解题思路:KMP,两次匹配,不过方法比较巧妙,两次分开求next就行解题代码: 1 // File Name: getnext.cpp 2 // Author: darkdream 3 // Created Time:...
分类:
其他好文 时间:
2014-09-10 20:56:31
阅读次数:
169
-webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; /* this fixes the overflow:hidden in Chrome */ -webkit-ma...
分类:
其他好文 时间:
2014-09-10 17:42:40
阅读次数:
225