层叠特性
p{color:green}
.red{color:red;}
.purple{color:purple;}
#line3{color:blue;}
这是第一行文本
这是第二行文本
这是第三行文本
这是第第四行文本
这是第五行文本
类别选择其的...
分类:
Web程序 时间:
2014-10-01 14:49:01
阅读次数:
235
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".补充说明:单词是指空格之间的字符序列。输入中可能有首部或尾部...
分类:
其他好文 时间:
2014-10-01 13:10:51
阅读次数:
161
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title></title>
</head>
<body>
<pre>
1、颜色是由数字来表示
2、颜色由3原色组成,红red、绿green、蓝blue、RGB
3、3原色各在[0-255]之间变化
综上:本质是组合3..
分类:
其他好文 时间:
2014-09-26 11:07:19
阅读次数:
199
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title></title>
<style>
#par{
width:600px;
height:300px;
background:green;
}
#son1{
width:300px;
height:100px;
background:blue;
}
#son2{
width:50%;
height:50%;
back..
分类:
其他好文 时间:
2014-09-26 10:49:29
阅读次数:
205
题目:Reverse Words in a StringGiven an input string, reverse the string word by word. For example, Given s = "the sky is blue", return "blue is sky the"...
分类:
其他好文 时间:
2014-09-25 21:18:27
阅读次数:
184
第一种情况: .content { overflow:hidden; width:100%; height:200px; border:2px dotted blue; } ...
分类:
其他好文 时间:
2014-09-25 19:04:47
阅读次数:
153
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title></title>
<style>
a{
color:black;
}
a:visited{
color:purple;
}
a:hover{
color:red
}
a:active{
color:blue;
}
</style>
</head>
&..
分类:
Web程序 时间:
2014-09-25 11:42:49
阅读次数:
254
Problem Description
We use Red, Green and Blue to make new colours. See the picture below:
Now give you n rectangles, the colour of them is red or green or blue. You have calculate the area ...
分类:
其他好文 时间:
2014-09-25 10:46:38
阅读次数:
211
题目描述:Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".解决方案:该题目解决思路很简单,新建一个字符串,然...
分类:
其他好文 时间:
2014-09-24 23:25:27
阅读次数:
171
题目链接Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the". 1 class Solution { 2 publ...
分类:
其他好文 时间:
2014-09-22 20:28:23
阅读次数:
128