就是表单验证validation插件这节课,怎么让提示改变位置啊?我看老师的代码表单提示提示有的在右边,有的在下面提示,怎么做到的
错误提示默认是出现在输入框的右侧,要让它出现在输入框的下面,最简便的方法就是设置<fildset>的宽度为input框的宽度,然后代码提示自动会出现在输入框的下方
body {
font-size: 36px;
line-height: 1.6;
}
p {
margin: 10px 0;
}
label {
display: inline-block;
min-width: 140px;
}
label.error {
margin-left: 10px;
color: red;
}
input, button {
font-size: 36px;
line-height: 35px;
border: 1px solid #999;
min-width: 180px;
}
input.error {
border: 1px solid red;
}
input[type=submit], button {
margin-top: 20px;
font-size: 36px;
padding: 10px 0;
}