通过CSS可以对文字有很不错的处理效果。以下就简单的整理几种文字处理技巧。持续更新。一、文字溢出:text-overflow 基本的式样如下:1 .huanhang {2 display: block; /*必须是块级元素*/3 white-space: nowrap; /*不换行...
分类:
其他好文 时间:
2015-03-15 16:38:13
阅读次数:
135
三种绘制模式:Screen Space - Overlay、Screen Space - Camera和World Space...
分类:
编程语言 时间:
2015-03-15 09:26:16
阅读次数:
160
http://acm.timus.ru/problem.aspx?space=1&num=1040题目要求在一个联通无向图中找出一种方法给边标号使得任意一个有多条边的点,边的号码的最大公约数都为1想象在dfs树上,以1为根进入,将第一条边标为序号1,则节点1满足条件剩下的边遵照dfs顺序表明,那么非...
分类:
其他好文 时间:
2015-03-15 07:01:29
阅读次数:
177
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.
If the last word does not exist, return 0.
Note: A word is defin...
分类:
其他好文 时间:
2015-03-15 00:55:38
阅读次数:
170
Given an unsorted array, find the maximum difference between the successive elements in its sorted form.Try to solve it in linear time/space.Return 0 ...
分类:
其他好文 时间:
2015-03-14 21:43:57
阅读次数:
145
Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.
For example, given
s = "leetcode",
dict = ["leet"...
分类:
其他好文 时间:
2015-03-13 23:53:03
阅读次数:
403