css的height属性可以设置100%,但是必须能得到父元素的高度。否则无效。例如:#aa{background:red;height:200px;}#bb{height:80%;background:blue;}#cc{height:50%;background:green;}此时百分比起效,效...
分类:
Web程序 时间:
2014-12-03 11:59:07
阅读次数:
217
第一种,最常用的,通过for in遍历数组
colours = ["red","green","blue"]
for colour in colours:
print colour
# red
# green
# blue
第二种,先获得数组的长度,然后根据索引号遍历数组,同时输出索引号
colours = ["red","green","blue"]
for i in ...
分类:
编程语言 时间:
2014-12-01 20:54:07
阅读次数:
142
Style.BasedOn 属性可通过多种方式在 WPF 的样式可以扩展或继承的。样式可以基于其他样式通过此属性。当您使用此属性,样式将继承该样式没有显式重新定义原始样式的值。在下面的示例中,Style2继承Yellow的Control.Background值,并添加Blue的Control.For...
分类:
其他好文 时间:
2014-12-01 11:21:03
阅读次数:
120
你可以写了三个css样式表css_red.css , css_blue.css , css_green.css这样你就可以写一个主样式 style.css 把三个样式表都装进去:@import "css_red.css"; @import "css_blue.css";@import ...
分类:
Web程序 时间:
2014-11-29 06:41:59
阅读次数:
169
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:
编程语言 时间:
2014-11-28 21:17:07
阅读次数:
353
蓝牙,wifi,3g 作为移动端平台最常见的dongle,蓝牙现在应用越来越广泛,特别是现在流行智能终端,多点互控,wifi,3g等资源消耗大,红外又有距离和障碍物的限制,所以说蓝牙通信在未来其它的不说,单在智能TV上应用的情景将会越来越广泛.这里只是初步理解学习,之后将会一层一层从kernel直到application...
分类:
移动开发 时间:
2014-11-28 18:19:22
阅读次数:
173
Given 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 order red, ...
分类:
其他好文 时间:
2014-11-27 06:44:23
阅读次数:
118
题意:找出这些串中最长的公共子串(长度≥3),如果长度相同输出字典序最小的那个。分析:用库函数strstr直接查找就好了,用KMP反而是杀鸡用牛刀。 1 #include 2 #include 3 4 char a[15][70], sub[70]; 5 int p[70], l; 6 7 ...
分类:
其他好文 时间:
2014-11-26 18:48:54
阅读次数:
156
"green","", "red","b" => "green", "","blue", "red","c" => "witer","hello","witer");//$result = array_unique($input); //去除重复元素$result = a_array_unique....
分类:
编程语言 时间:
2014-11-26 18:48:40
阅读次数:
177
屏幕尺寸大于400px时使用该css 屏幕尺寸小于399px时使用该cssbody{background:blue;}/*宽度500px-800px之间+高度100px-400px之间 蓝色*/@mediascreen and (max-width:500px){body{background:.....
分类:
Web程序 时间:
2014-11-25 18:14:28
阅读次数:
152