问答详情
源自:1-2 如何开始及举例

表单验证validation插件

就是表单验证validation插件这节课,怎么让提示改变位置啊?我看老师的代码表单提示提示有的在右边,有的在下面提示,怎么做到的

提问者:慕后端3081372 2016-07-28 14:53

个回答

  • Jayefader
    2016-07-28 23:14:01
    已采纳

    错误提示默认是出现在输入框的右侧,要让它出现在输入框的下面,最简便的方法就是设置<fildset>的宽度为input框的宽度,然后代码提示自动会出现在输入框的下方

  • 慕后端3081372
    2016-07-29 10:56:42

    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;

    }