NPUT默认是没有限制的,除非你加了maxlength=10这样就有了。
但是提交表单的时候是有限制的,这个也是别人告诉的,没有试验过:
POST基本上没有限制,限制可能是Web Server配置的限制,或是由JVM对内存的限制(上载内容太大JVM可能会出现内存溢出)。
GET方式URL?key=value&key2=value2……整个的长度限制为2K,如果前面的URL很长,后面的数据就会...
分类:
其他好文 时间:
2015-01-07 18:48:11
阅读次数:
172
简单说来,css实现方法有三种,先贴代码看效果: .triangle1,.triangle2,.triangle3{ width: 0; height: 0;/*overflow:hidden;解决ie6左右向溢出问题*/ display: inline-block; border-color: #...
分类:
Web程序 时间:
2015-01-07 16:22:06
阅读次数:
160
1.超出隐藏单行文字,仅量用超出隐藏,再考虑截字。.text-ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}应用在block级的元素上2.去掉最后一个borderli { border-b...
分类:
其他好文 时间:
2015-01-06 15:30:54
阅读次数:
110
1.块状list.list_box{ padding:0px; 15px 30px; width:970px; margin:0 auto; overflow:hidden;}.list_items{ list-style:none; width:1020px;}.list_items li{ wi...
分类:
其他好文 时间:
2015-01-06 00:42:37
阅读次数:
209
给包围 浮动的层 加清除浮动样式,样式要兼容的用下面的代码.clearfix {*zoom:1; clear:both;}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;zoom: 1;}...
分类:
其他好文 时间:
2015-01-05 20:20:03
阅读次数:
338
Abstract. To provide the precision required in industrial design, drawings need to offer the possibility of removing lines, which are hidden in a give...
分类:
其他好文 时间:
2015-01-05 20:18:49
阅读次数:
266
环境:ubuntu14.04 默认配置文件路径/etc/default/grub 例子: GRUB_DEFAULT=0?#默认启动那一个
#GRUB_HIDDEN_TIMEOUT=15?#选择菜单是否隐藏,注释掉就直接显示了
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOU...
分类:
其他好文 时间:
2015-01-05 19:00:16
阅读次数:
264
.box { width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}第二个属性是如何处理文本中的空白:nowrap 文本不会换行,文本会在在同一行上继续,直到遇到 <br> 标签为止。第...
分类:
Web程序 时间:
2015-01-05 16:18:51
阅读次数:
177
表格:
table{
table-layout: fixed;
}
}
t
td{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
本方法用于解决表格单元格内容过多时的美观问题,主要涉及到4句CSS样式:
1. table-layout: fixed 由于tab...
分类:
Web程序 时间:
2015-01-04 15:25:20
阅读次数:
158