摘要:
比较有价值的网址 http://lib.csdn.net/ http://www.runoob.com/ http://www.jqueryfuns.com/ http://www.93diy.com/ http://jquery.cuishifeng.cn/ https://github.com/ 阅读全文
摘要:
*{ padding:0px; margin:0px;} .box{ width:1000px; background:#ccc; margin:0 auto; overflow:hidden;} .main{ width:770px; height:2000px; background:#000; float:left;} .sub{ wid... 阅读全文
摘要:
//图片滚动 roll("#inner"); roll("#inner2"); function roll(oneRoll){ var step = 0; var count = $(""+oneRoll+" li").length; var $inner = $(""+oneRoll+""); v 阅读全文
摘要:
这个问题经常遇到 1、单行文本溢出显示省略号(…) text-overflow:ellipsis 部分浏览器还需要加宽度width属性 overflow:hidden;text-overflow:ellipsis;white-space:nowrap; 2、多行文本溢出显示省略号,WebKit浏览器 阅读全文
摘要:
元素拥有默认的white-space:normal,不换行是white-space:nowrap.但是遇到下面这种情况它把td撑开了 解决方法(以IE,chrome,FF为测试浏览器): { word-break:break-all; /*支持IE,chrome,FF不支持*/ word-wrap: 阅读全文
摘要:
遇到的第一个问题,点击第一行用toggle实现背景的变换,需要在toggle函数里面判断,当下面显示的时候是一个状态,下面不显示的时候是另一个状态,我用了 阅读全文
摘要:
第一类: 刚开始的思路是:让上面的选中的选项背景变成白色,让下面的层position:absolute;z-index:-1;top:1px,就能盖得上上面的横线。实践证明,这样是能盖得上,但是单选按钮不能点了。 正确的思路应该是:上面的选项切换大层应该使用定位position:relative,里 阅读全文
摘要:
html,body{overflow-x:hidden;} ul,li{list-style: none;} .nav{width:100%; height: 26px; overflow: hidden;} .nav li{width: 100px; text-align: center; height: 26px; line-height: 2... 阅读全文