写三句代码来控制一个属性,区别Firefox,IE7,IE6: background:orange;
*background:green !important; *background:blue;
说明:这段代码会使在Firefox中,背景呈橙色;IE7中为绿色;IE6中为蓝色。道...
分类:
Web程序 时间:
2014-05-30 22:12:39
阅读次数:
341
区别不同浏览器的CSShack写法:区别IE6与FF:background:orange;*background:blue;区别IE6与IE7:background:green!important;background:blue;区别IE7与FF:background:orange;*backgro...
分类:
Web程序 时间:
2014-05-17 19:30:27
阅读次数:
339
Comparable中,对于返回,尽量不要使用value1 -
value2,万一value1是很大的正数,value2是很大的负数,那么容易造成溢出Comparable接口中,经常有T extends
Comparable的,该怎么理解Orange extends Comparable and F...
分类:
编程语言 时间:
2014-05-12 16:44:29
阅读次数:
377
1、list.append(obj) 向列表中添加一个对象obj
list = ['apple', 'pear', 'orange']
>>> list.append('apple')
>>> list
['apple', 'pear', 'orange', 'apple']
2、list.count(obj) 返回一个...
分类:
编程语言 时间:
2014-05-12 14:17:41
阅读次数:
418
dict={"a":"apple","b":"banana","o":"orange"} print
"##########dict######################" for i in dict: print "dict[%s]=" %
i,dict[i] print...
分类:
编程语言 时间:
2014-05-04 20:13:19
阅读次数:
401
直接就上代码了:-module(shop).-export([cost/1,total/1]).cost(orange)
-> 5;cost(newspaper) -> 8;cost(apples) -> 2;cost(pears) ->
9;cost(milk) -> 7....
分类:
其他好文 时间:
2014-05-02 12:58:19
阅读次数:
280