码迷,mamicode.com
首页 > 其他好文 > 详细

登陆界面设置

时间:2017-04-27 16:17:32      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:mit   style   html   charset   shadow   put   doc   lan   center   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>登录页面</title>
    <style>
        body,h2,div{
            margin: 0;
            padding: 0;
        }
        #main{
            width: 400px;
            height: 250px;
            border: 1px solid rgb(185,192,204);
            border-radius: 5px;
            box-shadow: 3px 3px 3px #888;
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -200px;
            margin-top: -200px;
            /*position: relative;*/
        }
        #in{
             width: 100%;
             height: 160px;
             /*background: #fff;*/

             /*line-height: 1.5;*/
             padding-left: 40px;
        }
        #in input{
            line-height: 2;
            margin-top: 25px;
            width: 200px;
            border:1px solid  #C2C2C2;
            border-radius: 3px;
        }
        #in input[type=text]{
            background: url(imgs/user1.png) no-repeat 0 center;
            -webkit-background-size: 20px 20px;
            background-size: 20px 20px;
            padding-left: 22px;
        }
        #in input[type=password]{
            background: url(imgs/lock2.png) no-repeat 0 center;
            -webkit-background-size: 20px 20px;
            background-size: 20px 20px;
            padding-left: 22px;
        }
        label{
            color: #585858;
        }
        #btn{
            width: 100%;
            height: 45px;
            line-height: 45px;
            background: rgb(68,68,68);
            text-align: center;

        }
        h2{
            font-size: 25px;
            background: rgb(68,68,68);
            color:#fff;
            text-indent: 15px;
            height: 45x;
            line-height: 45px;
        }
        
    </style>
</head>
<body>
    <div id="main">
        <h2>LOGIN</h2>
        <form action="action/loginAction.php" method="post">
            <div id="in">
                <label for="username">用户名:<input type="text" name="username" id="username" placeholder="输入用户名"></label><br>
                <label for="userpass">密&nbsp;&nbsp;&nbsp;&nbsp;码:<input type="password" name="userpass" id="userpass" placeholder="输入用户密码"></label><br>
            </div>
            <div id="btn">
               <input type="submit" value="登 录">
            </div>
        </form>
    </div>
</body>
</html>

登陆界面设置

标签:mit   style   html   charset   shadow   put   doc   lan   center   

原文地址:http://www.cnblogs.com/zteng/p/6774676.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!