用户登录窗口 使用html和css编写代码 要求有用户名,密码,以及登录按钮且窗口位于网页中间
时间: 2023-10-26 20:04:41 浏览: 110
以下是一个简单的用户登录窗口的 HTML 和 CSS 代码,它包括用户名,密码和登录按钮,且窗口位于网页中间:
HTML 代码:
```
<!DOCTYPE html>
<html>
<head>
<title>User Login</title>
<style>
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.form {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="text"], input[type="password"] {
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
border: 1px solid #ccc;
width: 100%;
box-sizing: border-box;
}
input[type="submit"] {
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
box-sizing: border-box;
}
</style>
</head>
<body>
<div class="container">
<form class="form">
<h2>User Login</h2>
<input type="text" placeholder="Enter Username" name="username" required>
<input type="password" placeholder="Enter Password" name="password" required>
<input type="submit" value="Login">
</form>
</div>
</body>
</html>
```
CSS 代码:
```
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.form {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="text"], input[type="password"] {
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
border: 1px solid #ccc;
width: 100%;
box-sizing: border-box;
}
input[type="submit"] {
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
box-sizing: border-box;
}
```
解释:
- `container` 类设置了容器的样式,使其垂直居中于页面。
- `form` 类设置了表单的样式,使其包含一个标题、输入框和登录按钮。
- `input[type="text"]` 和 `input[type="password"]` 类设置了输入框的样式,使其具有一定的边框和圆角。
- `input[type="submit"]` 类设置了登录按钮的样式,使其具有绿色背景和白色文字,并且没有边框。
阅读全文