1、单行文本显示省略号 width:value(具体的值);设置容器具体的宽度 white-spacing:nowrap;强制文本在一行内显示 overflow:hidden;溢出内容为隐藏 text-overflow:ellipsis;溢出文本显示省略号 2、多行文本显示省略号 display:- ...
分类:
Web程序 时间:
2017-04-11 15:02:46
阅读次数:
276
var t = 50/ $(".shopsinfo-bottom .address li:first p").height(); $(".shopsinfo-bottom .address li:first p").css({ lineHeight:t*16+"px", height:t*$(".s ...
分类:
其他好文 时间:
2017-04-11 13:25:45
阅读次数:
258
最开始学前端就听过“外边距折叠”这一专业名词,可是什么条件下会发生外边距折叠,后来有了说法,叫“只有处于同一个BFC的外边距会发生折叠(什么是BFC不在这节做讨论)”,那是不是只有这一种条件下外边距才不折叠呢? 研究css2.2中的box model关于Collapsing margins的讲解。 ...
分类:
其他好文 时间:
2017-04-10 19:40:03
阅读次数:
179
JSContext:js执行环境,包含了js执行时所需要的所有函数和对象; js执行时,会在执行环境搜索需要的函数然后执行,或者保存传入的变量或函数; JSContext *jsContext = [self.webView valueForKeyPath:@"documentView.webVie ...
分类:
移动开发 时间:
2017-04-07 09:59:29
阅读次数:
810
<p class="p1">老师附件是肯定附件是独立开发建设的开发到了福克斯发动机开始的塑料袋封口大家看法</p> ...
分类:
其他好文 时间:
2017-04-01 12:50:28
阅读次数:
161
//////2010 #include #include #include using namespace std; mapm; bool Prime[10007]; int P[10005],n; const int maxn=10000; int main() { n=0; memset(Pri... ...
分类:
其他好文 时间:
2017-03-30 16:06:38
阅读次数:
282
Entity Framework Add and Attach and Entity States Entity Framewokr 新增、附加、实体状态 This topic will cover how to add and attach entities to a context and ho ...
分类:
其他好文 时间:
2017-03-28 00:33:50
阅读次数:
238
CSS3属性前缀 chrome和safari:-webkit firefox:-moz IE:-ms opera:-o 阴影模糊半径与阴影扩展半径的区别 阴影模糊半径:其值只能是为正值,如果其值为0时,表示阴影不具有模糊效果,其值越大阴影的边缘就越模糊; 阴影扩展半径:其值可以是正负值,如果值为正, ...
分类:
Web程序 时间:
2017-03-26 16:09:04
阅读次数:
167
shell编程中使用到得if语句内判断参数 –b当file存在并且是块文件时返回真 -c当file存在并且是字符文件时返回真 -d当pathname存在并且是一个目录时返回真 -e当pathname指定的文件或目录存在时返回真 -f当file存在并且是正规文件时返回真 -g当由pathname指定的 ...
分类:
系统相关 时间:
2017-03-24 20:36:37
阅读次数:
334
1.用span完成三角形的写法 span{ display: inline-block; width: 0px; height: 0px; border: 10px solid transparent; border-top: 10px solid #fff;} 2.多行文字超出以......的实行 ...
分类:
Web程序 时间:
2017-03-22 22:35:33
阅读次数:
165