新增的结构标签section元素表示页面中的一个内容区块,比如章节、页眉、页脚或页面的其他部分。可以和h1、 h2……等元素结合起来使用,表示文档结构。例:HTML5中……;HTML4中 ……。article元素表示页面中一块与上下文不相关的独立内容。比如一篇文章。aside元素表示article元...
分类:
Web程序 时间:
2014-07-18 15:26:27
阅读次数:
254
1、文本显示一行 text-overflow:ellipsis; white-space:nowrap; overflow:hidden; text-overflow属性仅是注解,当文本溢出时是否显示省略标记。并不具备其它的样式属性定义。我们想要实现溢出时产生省略号的效果。还必须定义:强制文...
分类:
Web程序 时间:
2014-07-18 15:25:57
阅读次数:
273
Theme Section
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1114 Accepted Submission(s): 579
Problem Description
It's time for...
分类:
其他好文 时间:
2014-07-18 12:19:26
阅读次数:
207
long sd=1345185923140L;
Date dat=new Date(sd);
GregorianCalendar gc = new GregorianCalendar();
gc.setTime(dat);
java.text.SimpleDateFormat format =...
分类:
编程语言 时间:
2014-07-18 11:29:20
阅读次数:
188
在 stackoverflow 上有人提问 程序员应该阅读的非编程类书籍有哪些? 本来只想整理编程类书籍, 不过突然眼前一亮,发现了《The
Art of War - Sun Tzu》回答者的推荐说明引用 Wikipedia 上的:
亚马逊提供免费的 Kindle 版读本:孙子兵法
Much of the text is about how to fight wars with...
分类:
其他好文 时间:
2014-07-18 11:11:34
阅读次数:
251
user-select有两个值:none:用户不能选择文本text:用户可以选择文本需要注意的是:user-select并不是一个W3C的CSS标准属性,浏览器支持的不完整,需要对每种浏览器进行调整
分类:
Web程序 时间:
2014-07-18 10:30:12
阅读次数:
197
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace demo1{ class Program { static...
分类:
其他好文 时间:
2014-07-18 10:16:30
阅读次数:
188
1 import java.text.*; 2 import java.util.*; 3 public class DateDemo { 4 public static void main(String[] args) throws Exception{ //throws Exception {....
分类:
编程语言 时间:
2014-07-18 10:01:46
阅读次数:
230
tomcat6.0.32com.dyyx.ShareUtils//返回系统当前时间public static String now();package com.dyyx;import java.text.DateFormat;import java.text.SimpleDateFormat;imp...
分类:
其他好文 时间:
2014-07-18 00:01:50
阅读次数:
334
在 CSS 中,类选择器以一个点号显示:
.center {text-align: center}
在上面的例子中,所有拥有 center 类的 HTML 元素均为居中。
在下面的 HTML 代码中,h1 和 p 元素都有 center 类。这意味着两者都将遵守 ".center" 选择器中的规则。
class="center">
This heading will be cent...
分类:
Web程序 时间:
2014-07-17 20:04:53
阅读次数:
246