图片文字的两栏布局有多种实现方式,基本都要靠浮动实现,但滥用浮动会破换布局的适应性。1.左右浮动图片左浮动,右边div右浮动.inner {overflow:hidden; width=600px}.inner_face {display: block;float: left;}.inner_rig...
分类:
其他好文 时间:
2014-09-07 14:41:15
阅读次数:
167
jQuery判断一个元素是显示还是隐藏,jQuery使用is()方法来判断一个元素是否显示,反之则为隐藏核心代码if($("#username").is(":hidden")){
}实例代码:
test.html
$(function(){
if($("#userid").is(":hidden")){
alert("隐藏")...
分类:
Web程序 时间:
2014-09-06 22:35:24
阅读次数:
298
原文链接:http://www.jb51.net/web/73987.html在CSS中,让元素隐藏指屏幕范围内肉眼不可见的方法很多,只不过有的依然保留空间,而有的却消失的不留痕迹,接下来本文将详细介绍下css元素隐藏原理,感兴趣的你可不要错过了哈一、CSS元素隐藏 在CSS中,让元素隐藏(指屏幕范...
分类:
Web程序 时间:
2014-09-05 12:40:31
阅读次数:
261
transform:rotate在手机上显示有锯齿
解决方案也很简单, 利用外层容器的overflow:hidden 加上图片margin:-1px 就可以解决。
分类:
移动开发 时间:
2014-09-04 10:28:29
阅读次数:
223
1.单行内容的居中.middle-demo-1{height: 4em;line-height: 4em;overflow: hidden;}2.父元素未设置高度,内容居中.middle-demo-2{padding-top: 24px;padding-bottom: 24px;}3.子元素有固定高...
分类:
其他好文 时间:
2014-09-02 21:15:05
阅读次数:
180
border:20px solid transparent;_border-color:tomato;_filter:chroma(color=tomato);width:0;height:0;overflow:hidden;display: inline-block;注意:当前层的背景色在IE6浏...
分类:
Web程序 时间:
2014-09-02 17:34:05
阅读次数:
152
Style Switcher Default Narrow Column Large Print 1、事件目标 $(‘#switcher‘).click(function(event){ if(event.target == this){ $(‘#switcher .button‘).toggleClass(‘hidden‘); } }) 确保被单击的元素是 ,...
分类:
Web程序 时间:
2014-09-02 12:43:24
阅读次数:
182
http://stackoverflow.com/questions/2697299/asp-net-mvc-why-is-html-checkbox-generating-an-additional-hidden-inputhttp://bbs.csdn.net/topics/390707144“...
分类:
Web程序 时间:
2014-09-02 12:07:04
阅读次数:
214
多余字用省略号表示width: 200px;overflow:hidden;text-overflow:ellipsis;/*文字溢出的部分隐藏并用省略号代替*/white-space:nowrap;/*文本不自动换行*/
分类:
Web程序 时间:
2014-09-01 19:30:03
阅读次数:
249
代码: overflow: hidden; white-space: nowrap;text-overflow: ellipsis;重点代码:text-overflow: ellipsis;解释:简单理解就是我要把文本限制在一行(white-space: nowrap;),肯定这一行是有限制的(wi...
分类:
Web程序 时间:
2014-09-01 15:31:43
阅读次数:
155