Blogger Information
Blog 18
fans 1
comment 1
visits 11234
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
<form>表单仿登录页面——2019年3月12日20时
至诚网络的博客
Original
527 people have browsed it

实例

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
	<title>登录页面</title>
	<style type="text/css">
	*{margin: 0;padding: 0;}
  body{
    background: pink;
  }
  div{
    width: 400px;
    height: 350px;
    margin: 200px auto;
    background: rgba(160,118,116,0.5);
    border-radius: 10px;
    text-align: center;
  }
  img{
    width: 80px;
    border-radius: 50%;
    margin-top: 50px;
  }
  input{
    width:300px;
    height:30px;
    margin-top: 15px;
    border-radius: 6px;
    border:none; /*去掉元素自带边框*/
    padding-left: 15px;
  }
  button{
    border: none;
    width: 200px;
    height: 35px;
    border-radius: 6px;
    background: pink;
    color: red;
    margin-top:30px;
  }
	</style>
</head>
<body>
  <div>
   <img src="http://img.photo.163.com/6-woxecPz1aBq_csvd10Rw==/2834453015476316347.jpg">
   <form>
     <input type="text" name="" placeholder="请输入用户名...."><br>
     <input type="password" name="" placeholder="请输入密码...."><br>
     <button>登录</button>
   </form>
  </div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!