①该方法只是针对内容是文本元素,对块元素不起作用,并且最好是文本元素比较少的时候,多行的时候容易若同时也设置overflow:hidden;会出现断词。 这是一行文本.content{ width:200px; height:200px; line-height: 200px...
分类:
其他好文 时间:
2014-09-01 12:00:02
阅读次数:
139
table{table-layout: fixed;}td{white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
分类:
Web程序 时间:
2014-08-31 13:12:01
阅读次数:
248
代码: overflow: hidden; white-space: nowrap; text-overflow: ellipsis;重点代码:text-overflow: ellipsis;解释:简单理解就是我要把文本限制在一行(white-space: nowrap;),肯定这一行是有限制的(w...
分类:
Web程序 时间:
2014-08-29 22:35:08
阅读次数:
387
代码: overflow: hidden; white-space: nowrap; text-overflow: ellipsis; 重点代码:text-overflow: ellipsis; 解释:简单理解就是我要把文本限制在一行(white-space: nowrap;),肯定这一行是有限制的...
分类:
Web程序 时间:
2014-08-29 10:51:07
阅读次数:
229
从各个方面比较,after伪元素闭合浮动无疑是相对比较好的解决方案了,下面详细说说该方法。.clearfix:after {content:"."; display:block; height:0; visibility:hidden; clear:both;}.clearfix { *zoom:1...
分类:
其他好文 时间:
2014-08-27 18:28:08
阅读次数:
176
第一章,概述这章是综述性质的,作者随意的给出了一些例子。1. visibility = hidden, display = none。function hide (e, reflow) { if (reflow) { e.target.style.display ...
分类:
其他好文 时间:
2014-08-26 22:40:36
阅读次数:
349
未定义:1. display:block; (在行内元素加上display:block; 或者把目标元素放入等块级元素,然后把text-indent样式应用到等块级元素。)2. overflow:hidden;3. text-align:left;4. width5. height6. line-h...
分类:
其他好文 时间:
2014-08-26 17:07:36
阅读次数:
186
HTMl代码:1 输入法2 3 搜狗输入法4 智能全拼输入法5 腾讯输入法6 日文输入法7 8 CSS代码:1 *{ margin:0; padding:0;}2 div{ width:140px; overflow:hidden; font-size:14px; }3 #btn{ display:...
分类:
其他好文 时间:
2014-08-26 17:04:26
阅读次数:
297
div的visibility可以控制div的显示和隐藏,但是隐藏后页面显示空白: style="visibility: none;" document.getElementById("typediv1").style.visibility="hidden";//隐藏 document.get...
分类:
Web程序 时间:
2014-08-25 20:55:44
阅读次数:
411
目前主流浏览器的兼容性做的都比较好了,本文主要针对IE6,7的不兼容问题进行解决。1.有浮动存在时,计算一定要精确,不要让内容的宽高超出我们所设置的宽高,IE6下,内容会撑开设置好的高度。 解决方法:给对应的父级加overflow:hidden;但是会有部分被隐藏掉,最好是精确计算宽高再设定eg:....
分类:
Web程序 时间:
2014-08-22 12:28:56
阅读次数:
218