写一个漂亮的登录页面CSS代码
时间: 2023-06-04 09:08:31 浏览: 208
css实现登陆界面的代码
5星 · 资源好评率100%
Sure! 首先,我们需要创建一个HTML文件来构建登录页面的基本结构,如下所示:
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Login Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Login</h1>
<form action="" method="post">
<label for="username">Username:</label>
<input type="text" name="username" id="username">
<label for="password">Password:</label>
<input type="password" name="password" id="password">
<input type="submit" value="Login">
<a href="#">Forgot Password</a>
</form>
</div>
</body>
</html>
```
在这里,我们创建了一个包含登录表单的 `<div>` 标签。现在,我们将使用 CSS 来美化这个表单。我们首先定义全局样式,包括页面背景,字体和一些通用的样式:
```
body {
background-color: #f6f6f6;
font-family: 'Open Sans', sans-serif;
}
h1 {
text-align: center;
color: #444444;
}
.container {
background-color: #ffffff;
padding: 20px;
margin: auto;
width: 400px;
border-radius: 5px;
box-shadow: 0px 0px 10px 0px #666666;
}
```
这样,我们创建了一个白色背景的容器,并为其添加了一些阴影。接下来,我们为输入域和按钮添加样式:
```
form {
margin-top: 20px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 10px;
border: 1px solid #cccccc;
border-radius: 3px;
margin-bottom: 10px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin-top: 10px;
cursor: pointer;
border-radius: 3px;
width: 100%;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
```
在这里,我们为标签和输入域定义了一些通用样式。此外,我们为登录按钮应用了一些特殊样式,如绿色背景和阴影。
最后,我们可能还需要添加一些其他的修饰,比如在忘记密码下添加下划线。这是 CSS 代码的最后一部分:
```
a {
color: #666666;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
```
完成了!这就是一个漂亮的登录页面所需要的所有样式。您可以在同一目录下创建名为 style.css 的文件,并将所有上述 CSS 代码都复制到其中。最终效果看起来就像这样:
![login-page](https://pic3.zhimg.com/v2-3a7e3d3a8f25903e36b14f09822a1f2a_b.jpg)
阅读全文