Document 当前游览器不支持Canvas,请更换游览器再试! Canvas 绘图之旅 stop white bl...
分类:
Web程序 时间:
2015-11-24 14:18:50
阅读次数:
190
Write a method to replace all spaces in a string with %20. The string is given in a characters array, you can assume it has enough space for replaceme...
分类:
其他好文 时间:
2015-11-24 06:16:14
阅读次数:
124
1、HTML enctype Attributeapplication/x-www-form-urlencoded 传送之前所有的字符都会被encoded,(spaces 被转换为+、特殊字符被转换为ASCII HEX)multipart/form-data 没有字符被encoded,一般用upl....
分类:
Web程序 时间:
2015-11-22 20:23:15
阅读次数:
263
表格的基本元素<table></table><tr>定义行标签</tr><td>定义列标签</td><th>表格内的表头单元格</th><thead>定义在thead下的标签不论在HTML代码中你放置在什么位置都会以表头形式显示</thead>同理<tbody>&l..
分类:
Web程序 时间:
2015-11-20 12:59:17
阅读次数:
178
css实现网页中文字过长截取...title class应该这样写:.title{ width:300px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}说明:1、宽度一定要设置,可以根据实际需求调整。2、white-sp...
分类:
Web程序 时间:
2015-11-19 18:40:22
阅读次数:
124
如果实现单行文本的溢出显示省略号同学们应该都知道用text-overflow:ellipsis属性来,当然还需要加宽度width属来兼容部分浏览。实现方法:overflow:hidden;text-overflow:ellipsis;white-space:nowrap;效果如图:但是这个属性只支持...
分类:
Web程序 时间:
2015-11-19 11:19:17
阅读次数:
173
Preferences -> Settings-User{ "tab_size":4, "translate_tabs_to_spaces": true, "draw_white_space": "all", // 显示出空白符 "trim_trailing_white_space_on_s...
分类:
其他好文 时间:
2015-11-18 16:01:33
阅读次数:
148
1.无序列表: good boy haha2.有序列表: good boy haha3.自定义列表:Coffee- black hot drinkMilk- white cold drink4.不同类型的无序列表:
分类:
Web程序 时间:
2015-11-17 16:51:49
阅读次数:
163
枚举(Enums)JDK1.5加入了一个全新的类型的“类”--枚举类型。为此JDK1.5引入了一个新关键字enum。我们可以这样来定义一个枚举类型PublicenumColor{Red,White,Blue}然后可以这样来使用ColormyColor=Color.Red;枚举类型还提供了两个很有用的静态方法values()和valueOf()。我们..
分类:
编程语言 时间:
2015-11-15 23:29:03
阅读次数:
357
1243. Divorce of the Seven DwarfsTime limit: 1.0 secondMemory limit: 64 MBAfter the Snow White with her bridegroom had left the house of the seven dwa...
分类:
其他好文 时间:
2015-11-14 16:22:30
阅读次数:
215