符合一贯简单的风格,只需记住两个符号 _ 和 *看例子:#main {background:black;*background:red;_background:blue;}第一句会被所有浏览器承认,于是背景是黑的;第二句只有ie67认,于是只有ie67的背景变红;第三句只有ie6认,于是只有ie6变...
分类:
其他好文 时间:
2014-10-28 13:42:06
阅读次数:
145
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".click to show clarification.Cl...
分类:
其他好文 时间:
2014-10-25 21:29:50
阅读次数:
236
1.‘\9’: eg: .test { color/*\**/: blue\9 } .header {width:300px;} /* 所有浏览器*/ .header {width/*\**/:330px\9;} /* 所有浏览器IE浏览器 */ .header {*width:310px;...
分类:
Web程序 时间:
2014-10-24 20:34:24
阅读次数:
195
Sort ColorsGiven an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the ...
分类:
其他好文 时间:
2014-10-24 18:38:49
阅读次数:
258
============问题描述============ privatevoidgetContactPeople(StringincomingNumber)
{ myTextView1.setTextColor(Color.BLUE); ContentResolvercontentResolver=...
分类:
移动开发 时间:
2014-10-24 10:38:09
阅读次数:
240
一. 出现背景:
在JDK1.5之前,我们定义常量是这样的:public static final String RED = “RED”;
在JDK1.5中加入了枚举类型,我们可以把相关的常量分组到一个枚举类中:
public enum Color {
RED, GREEN, BLUE;
}
使用的时候可以这样:Color c = Color.RED
二. 枚举特点:
1...
分类:
编程语言 时间:
2014-10-23 19:22:45
阅读次数:
223
经过一个暑假的集训,打完个人排位,然后组队,组队这个很悬,最后还是按了个人赛排名组了起来。结果我跟小邪,blue组了一支全13级队。然后组队赛就开始了,组队赛一开始打得很烂,然后我们慢慢回暖,虽然追不上前面的3,4,5,6队,但是也是跟8,9,10队拉开了差距。区域赛网络赛的时候,我们队有好发挥.....
分类:
其他好文 时间:
2014-10-22 21:56:10
阅读次数:
194
一、题目描述Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".二、分析要注意几点:1、当字符串的头部或者尾部存...
分类:
编程语言 时间:
2014-10-22 21:40:18
阅读次数:
250
RGB:一个像素由红色(RED)、绿色(GREEN)、蓝色(BLUE)三元色顺序存放。每种元色占用一字节(Btye)。一个像素总共占用3字节(Byte),24比特(Bit)。
其它表示方法:RGB24、RGB888
根据RGB存放位置组合,还有BGR(蓝色、绿色、红色)序顺存放
RGBA:是在RGB的基础上增加一个透明度(Alpha)。总共4字节(Byte)共32比特(Bit)。其它...
分类:
其他好文 时间:
2014-10-22 10:06:06
阅读次数:
152
my_name = 'Zed A. Shaw'my_age = 35 # not a liemy_height = 74 # inchesmy_weight = 180 # lbsmy_eyes = 'Blue'my_teeth = 'White'my_hair = 'Brown'print "Le...
分类:
其他好文 时间:
2014-10-21 23:05:05
阅读次数:
257