zoukankan      html  css  js  c++  java
  • css设计并排布局

    css code

    form#reset_password ul {
        list-style: none;
        margin: 0 0 20px 200px;
        padding: 0;
    }
    
    form#reset_password ul li:first-child {
        display: inline;
        line-height: 34px;
        padding-left: 10px;
    }
    
    form#reset_password ul li:nth-child(2) {
        float: left;
        line-height: 34px;
    }
    
    form#reset_password ul li:last-child {
        float: left;
    }

    html code

    <form id="reset_password">
        <input type="hidden" name="rt" value="<?= $msg['reset_time'] ?>">
        <input type="hidden" name="uname" id="uname" value="<?=$msg['username'];?>">
        <ul>
            <li></li>
            <li>&emsp;用户名</li>
            <li><input class="form-control" type="text" value="<?=$msg['username'];?>"
                placeholder="" autocomplete="off" disabled /></li>
        </ul>
    
        <ul>
            <li></li>
            <li>&emsp;新密码</li>
            <li><input class="form-control" type="password" name="newpwd" id="newpwd" value=""
                autocomplete="off" placeholder="请输入您的新密码" /></li>
        </ul>
    
        <ul>
            <li></li>
            <li>确认密码</li>
            <li><input class="form-control" type="password" name="repeat_pwd" id="repeat_pwd" value=""
                autocomplete="off" placeholder="请再次输入您的新密码以进行确认" /></li>
        </ul>
        <p><button id="save_new_pwd" class="btn btn-success">确认修改</button></p>
    </form>

    效果如下

  • 相关阅读:
    SQL数据类型详解
    将Excel表格导入DataTable的方法
    .net的反射机制
    经典SQL语句大全(一)
    c# Invoke和BeginInvoke 区别
    c#中两种常用的异步调用方法
    SQL存储过程参数问题
    API 函数大全(下)
    API函数大全 (上)
    javascript 常用function
  • 原文地址:https://www.cnblogs.com/gentsir/p/9565635.html
Copyright © 2011-2022 走看看