zoukankan
html css js c++ java
input style兼容IE6的方案
FF与IE7下input type="text" 和 input type="password"输入框的长度都是一样的,但在IE6下偏偏前面的长后面的短2px,设置size也不行,而设置width可以,但为了不影响其他input(如type=submit)的width,我们可以这样写css:
Java 代码
input[type=
"text"],
input[type=
"password"] {
200px;
}
input {
expression((
this.type=="text" || this.type=="password") ? "200px" : "style");
}
查看全文
相关阅读:
svn的安装方法
在powerDesigner中通过SQL生成pdm
关于文件下载
关于ClassPath的思考
重读Spring之ConfigurationClassPostProcessor-改正错误
SpringBoot自动装配原理
SpringMVC之json是怎么传回前端的 @ResponseBody解析
consumer配置参数之max.poll.interval.ms
SpringMVC 之处理请求
使用SpringMVC遇到的坑
原文地址:https://www.cnblogs.com/zzh/p/1706541.html
最新文章
RabbitMQ安装
RabbitMQ简介
PyCharm--git提交
12.24TG1
q1110
q1097
TG2
L3865
编译错误
st表
热门文章
12.22
q1096
q1095
org.apache.jasper.JasperException: Unable to compile class for JSP
Caused by: java.sql.BatchUpdateException
Could not find action or result
class in Bad version
部署不能产生class文件的问题
SQL中的between and
checkbox做全部选中,全部取消效果
Copyright © 2011-2022 走看看