码迷,mamicode.com
首页 >  
搜索关键字:letter    ( 1667个结果
css常用属性总结:关于word-spacing和letter-spacing的使用
前端时间项目版本迭代,修改代码时发现使用了关于word-spacing和letter-spacing。先说下使用场景,以前的项目中,经常遇到某些字符间有一些间距,我看了一些同事的代码是这么实现的: <p>操&nbsp作</p> 如果之间比一个空格距离要宽的话,就多加几个&nbsp,这个方法虽然可行, ...
分类:Web程序   时间:2017-04-12 04:37:16    阅读次数:214
二、操作符
1.赋值 别名现象: 1)对象别名:对象a,b a = b; a的原引用丢失,被垃圾回收,a的新引用指向b的对象内容; 避免方式: a.name = b.name; 彼此对象独立; 2)方法别名: f(Letter y){y.c = '2';} class Letter{char c;} { Let ...
分类:其他好文   时间:2017-04-09 09:56:46    阅读次数:161
RTL源码归类与路径
最近扫了下VCL架构剖析和Mastering Delphi,感觉RTL与VCL的底层设计实在是经典,准备细细咀嚼! 先搜集了RTL各模块详情的接受网站, http://www.delphibasics.co.uk/ByLetter.asp?Letter=A 另外,在Delphi的安装目录下,可以直接 ...
分类:其他好文   时间:2017-04-09 09:26:04    阅读次数:149
J - Simpsons’ Hidden Talents
Homer: Marge, I just figured out a way to discover some of the talents we weren’t aware we had. Marge: Yeah, what is it? Homer: Take me for example. I ...
分类:其他好文   时间:2017-04-08 11:05:18    阅读次数:258
B - Oulipo
The French author Georges Perec (1936?C1982) once wrote a book, La disparition, without the letter 'e'. He was a member of the Oulipo group. A quote f ...
分类:其他好文   时间:2017-04-05 23:17:09    阅读次数:179
CodeForces 91A Newspaper Headline
题目链接:CodeForces - 91A Newspaper Headline 官方题解: In this problem letters from s1 should be taken greedily: take the left letter from the right of the la... ...
分类:其他好文   时间:2017-04-05 21:34:53    阅读次数:357
[LeetCode]Letter Combinations of a Phone Number
将电话号码的组合转换称所有可能的字母组合。 思路: 首先将电话键盘中的0->9的数字对应的字母集合放到一个常量二维数组中便于搜索。 [ [' ']//0 []//1 ['a','b','c']//2 ... ['w','x','y','z']//9 ] 然后递归搜索每一位给定的数字对应的字母数组,一 ...
分类:其他好文   时间:2017-04-05 01:28:44    阅读次数:250
选择器
伪类选择器: <!DOCTYPE html> <html> <head lang="en"> <meta charest="utf-8"> <title>伪类选择器举例</title> <style> p:first-letter:{ font-weight:bold; color:#43193c; ...
分类:其他好文   时间:2017-04-03 23:38:27    阅读次数:189
LeetCode 389. Find the Difference
Given two strings s and t which consist of only lowercase letters. String t is generated by random shuffling string s and then add one more letter at ...
分类:其他好文   时间:2017-04-02 19:22:37    阅读次数:154
css段落首字母放大
段落首字母放大是指放大段落开头的字母或者汉字,主要使用了css的first-letter伪类选择器。 单行放大: 在第一行内放大,效果如下: 注意:first-letter支持IE7+,first-line支持IE8+ 多行放大: 效果如下: ...
分类:Web程序   时间:2017-04-02 19:16:47    阅读次数:219
1667条   上一页 1 ... 94 95 96 97 98 ... 167 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!