码迷,mamicode.com
首页 >  
搜索关键字:blue    ( 1833个结果
JavaScript你所不知道的困惑(3)
困惑一:window.color = "red"; var o = {color: "blue"}; function sayColor(){ alert(this.color); } sayColor(); //red sayColor.call(this); //red sayColor.call(window); //red sayColor.call(o); //bl...
分类:编程语言   时间:2014-05-22 12:32:53    阅读次数:255
LeetCode:Reverse Words in a String
题目: Given an input string, reverse the string word by word. For example, Given s = "the sky is blue", return "blue is sky the". Clarification: What constitutes a word? A sequence of non-spa...
分类:其他好文   时间:2014-05-18 04:12:07    阅读次数:198
CSS选择器
CSS的命名空间是大小写敏感的;选择器在HTML不区分大小写,在XML中大小写敏感。1. 元素选择器它是最常见也是最基本的 CSS 选择器,文档的元素就是最基本的选择器。html {color:black;}h1 {color:blue;}h2 {color:silver;}在 W3C 标准中,元素...
分类:Web程序   时间:2014-05-18 00:28:41    阅读次数:417
CSS hack:IE6,IE7,firefox显示不同效果
区别不同浏览器的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
ECNU 1328 Stripes (sg函数)
看了张一飞大神的论文,开始找题做,上面提到的一个就是ecnu上的题链接:http://www.acm.cs.ecnu.edu.cn/problem.php?problemid=1328题目大意:给定red、green、blue三种长度分别为c、z、n的矩形条纹,要求用这三种矩形条纹来cover大小为...
分类:其他好文   时间:2014-05-17 18:23:23    阅读次数:292
LeetCode OJ - Reverse Words in a String
题目: 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-05-16 05:44:30    阅读次数:263
事件封装(多个函数绑定一个事件,估计这样解释不对)
"http://www.w3.org/TR/html4/loose.dtd">         -->                 .red{width:100px;height:100px;background:red;}         .blue{width:100px;height:100px;background:blue;}...
分类:其他好文   时间:2014-05-15 23:16:15    阅读次数:379
[LeetCode]Reverse Words in a String
题目:Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".Clarification:What constitu...
分类:其他好文   时间:2014-05-13 22:45:04    阅读次数:317
关于阿里的一道笔试题分析
其题目如下:#pragma pack(2)class A{public: int i; union U { char buff[13]; int i; }u; void foo() { } typedef char* (*f)(void*); enum{red, green, blue} ...
分类:其他好文   时间:2014-05-12 21:18:19    阅读次数:321
extjs的css样式更改
.x-column-header{//更改grid表头样式 color:blue; font-size:12px;}
分类:Web程序   时间:2014-05-12 02:36:10    阅读次数:760
1833条   上一页 1 ... 180 181 182 183 184 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!