.service{ /*position:relative;*/ height:96% !important;overflow: hidden;}.pright{ height:40px; text-align:right; margin-top:30px; padding-right:50px; ...
分类:
Web程序 时间:
2014-08-07 18:44:31
阅读次数:
249
1、document.hidden 支持page visibility的浏览器在document上添加一个hidden属性(不同浏览器可能需要前缀,如webkitHidden),看当前tab页是否激活,激活(focus)时document.hidden属性是false,否则是true。 docu.....
分类:
其他好文 时间:
2014-08-07 18:04:20
阅读次数:
416
1. html中只有竖直滚动条1 {2 overflow-y:scroll;3 overflow-x:hidden;4 }或者:2. 没有垂直滚动条1 {2 overflow-y:hidden;3 overflow-x:scroll;4 }或者:3.没有滚动条{ ...
分类:
Web程序 时间:
2014-08-06 18:05:21
阅读次数:
214
.detail_row?{
????overflow?:hidden;
????font-size?:12px;
}
.detail_col_one,?.detail_col_two,?.detail_col_three,?.detail_col_four,.one-row-label,?.one-row-content?{
????margin-bo...
分类:
其他好文 时间:
2014-08-06 02:06:20
阅读次数:
1254
jquery中选择器input:hidden和input[type=hidden]的差别关于选择器:hidden的申明,在jquery申明文档中是如许说的:匹配所有不成见元素,或者type为hidden的元素。而[type=hidden]是查找所有type属性便是hidden的元素。两者是有雷同之处...
分类:
Web程序 时间:
2014-08-05 15:17:09
阅读次数:
255
text-overflow:ellipsis;white-space:nowrap;overflow:hidden;不换行,一行显示溢出时,文本自动换行。以前都是js计算的,现在可好。ellipsis:省略号
分类:
Web程序 时间:
2014-08-05 09:30:58
阅读次数:
360
题意是求第一个字符的前缀和后一个字符串的后缀最大的公共序列,并输出。。。
将两个字符串合并,求出kmp中的next数组就行,但要注意不要大于某个字符串的长度;
#include
#include
const int N = 50005;
#define min(a,b) ((a)
char s1[N], s2[N], s3[N * 2];
int next[N * 2];...
分类:
其他好文 时间:
2014-08-04 17:36:47
阅读次数:
207
无标题文档 微博 私信 评论 @我 我在这里不动,但上面会把我遮住希望把某个元素移除你的视线: 1、display:none; 显示为无 2、visibility:hidden; 隐藏 3、wi...
分类:
Web程序 时间:
2014-08-04 17:24:07
阅读次数:
338
问题重现:There are no scrollbarson this page in sane browsershtml, body, p { margin: 0; padding: 0; } body { overflow: hidden; } p { width: 5000px; height...
分类:
其他好文 时间:
2014-08-04 14:12:07
阅读次数:
217
Google的Android官方文档:Actions that can't fit in the action bar or aren't important enough are hidden in the action overflow. The user can reveal a list o...
分类:
移动开发 时间:
2014-08-04 13:25:27
阅读次数:
229